Fix: remove unused proc from io_rq filter
authorAntoine Busque <abusque@efficios.com>
Fri, 15 Jan 2016 21:53:59 +0000 (16:53 -0500)
committerAntoine Busque <abusque@efficios.com>
Thu, 11 Feb 2016 18:58:52 +0000 (13:58 -0500)
Signed-off-by: Antoine Busque <abusque@efficios.com>
lttnganalyses/cli/io.py

index 413958c540ef641b368c9dd1044e0786bda69812..afe66aa109fce689999c35a0910e257e5f4dced7 100644 (file)
@@ -274,10 +274,6 @@ class IoAnalysisCommand(Command):
                     begin > self._args.end)
 
     def _filter_io_request(self, io_rq):
-        if io_rq.tid in self._analysis.tids:
-            proc = self._analysis.tids[io_rq.tid]
-        else:
-            proc = None
         return self._filter_size(io_rq.size) and \
             self._filter_latency(io_rq.duration) and \
             self._filter_time_range(io_rq.begin_ts, io_rq.end_ts)
This page took 0.025508 seconds and 5 git commands to generate.