mirror of https://github.com/xemu-project/xemu.git
scripts/kvm/kvm_stat: Replaced os.listdir with os.walk
Os.walk gives back lists of directories and files, no need to filter directories from the list that listdir gives back. To make it better understandable a wrapper with docstring was introduced. Signed-off-by: Janosch Frank <frankja@linux.vnet.ibm.com> Message-Id: <1452525484-32309-3-git-send-email-frankja@linux.vnet.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
c81ab0ac90
commit
6590045e5d
|
@ -26,7 +26,7 @@ from collections import defaultdict
|
||||||
class DebugfsProvider(object):
|
class DebugfsProvider(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.base = '/sys/kernel/debug/kvm'
|
self.base = '/sys/kernel/debug/kvm'
|
||||||
self._fields = os.listdir(self.base)
|
self._fields = walkdir(self.base)[2]
|
||||||
def fields(self):
|
def fields(self):
|
||||||
return self._fields
|
return self._fields
|
||||||
def select(self, fields):
|
def select(self, fields):
|
||||||
|
@ -285,6 +285,15 @@ def detect_platform():
|
||||||
|
|
||||||
detect_platform()
|
detect_platform()
|
||||||
|
|
||||||
|
|
||||||
|
def walkdir(path):
|
||||||
|
"""Returns os.walk() data for specified directory.
|
||||||
|
|
||||||
|
As it is only a wrapper it returns the same 3-tuple of (dirpath,
|
||||||
|
dirnames, filenames).
|
||||||
|
"""
|
||||||
|
return next(os.walk(path))
|
||||||
|
|
||||||
def invert(d):
|
def invert(d):
|
||||||
return dict((x[1], x[0]) for x in d.iteritems())
|
return dict((x[1], x[0]) for x in d.iteritems())
|
||||||
|
|
||||||
|
@ -394,9 +403,7 @@ class Event(object):
|
||||||
class TracepointProvider(object):
|
class TracepointProvider(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
path = os.path.join(sys_tracing, 'events', 'kvm')
|
path = os.path.join(sys_tracing, 'events', 'kvm')
|
||||||
fields = [f
|
fields = walkdir(path)[1]
|
||||||
for f in os.listdir(path)
|
|
||||||
if os.path.isdir(os.path.join(path, f))]
|
|
||||||
extra = []
|
extra = []
|
||||||
for f in fields:
|
for f in fields:
|
||||||
if f in filters:
|
if f in filters:
|
||||||
|
|
Loading…
Reference in New Issue