tools/kvm_stat: remove pid filter on empty input

Improve consistency in the interactive dialogue for pid filtering by
removing any filters on empty input (in addition to entering 0).

Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com>
Reviewed-by: Janosch Frank <frankja@linux.vnet.ibm.com>
Reviewed-by: Marc Hartmayer <mhartmay@linux.vnet.ibm.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
Esse commit está contido em:
Stefan Raspl
2017-03-10 13:40:09 +01:00
commit de Paolo Bonzini
commit be03ea3b77

Ver arquivo

@@ -991,10 +991,13 @@ class Tui(object):
curses.noecho()
try:
pid = int(pid)
if pid != 0 and not os.path.isdir(os.path.join('/proc/',
str(pid))):
continue
if len(pid) > 0:
pid = int(pid)
if pid != 0 and not os.path.isdir(os.path.join('/proc/',
str(pid))):
continue
else:
pid = 0
self.refresh_header(pid)
self.update_pid(pid)
break