提交 b74faa93 编写于 作者: S Stefan Raspl 提交者: Paolo Bonzini

tools/kvm_stat: fix extra handling of 'help' with fields filter

Commit 67fbcd62 ("tools/kvm_stat: add '-f help' to get the available
event list") added support for '-f help'. However, the extra handling of
'help' will also take effect when 'help' is specified as a regex in
interactive mode via 'f'. This results in display of all events while
only those matching this regex should be shown.
Signed-off-by: NStefan Raspl <raspl@linux.vnet.ibm.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 67c162b0
......@@ -478,7 +478,7 @@ class Provider(object):
@staticmethod
def is_field_wanted(fields_filter, field):
"""Indicate whether field is valid according to fields_filter."""
if not fields_filter or fields_filter == "help":
if not fields_filter:
return True
return re.match(fields_filter, field) is not None
......@@ -1567,6 +1567,7 @@ def main():
stats = Stats(options)
if options.fields == "help":
stats.fields_filter = None
event_list = "\n"
s = stats.get()
for key in s.keys():
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册