diff --git a/builtin-list.c b/builtin-list.c index 2d593b5..61bba86 100644 --- a/builtin-list.c +++ b/builtin-list.c @@ -11,8 +11,6 @@ #include #include -#define PROCESS_NAME "kvm" - struct pid_cmd { u32 type; u32 len; @@ -71,8 +69,6 @@ static int print_guest(const char *name, int sock) goto cleanup; if (fscanf(fd, "%*u (%as)", &comm) == 0) goto cleanup; - if (strncmp(comm, PROCESS_NAME, strlen(PROCESS_NAME))) - goto cleanup; printf("%5d %-20s %s\n", pid, name, KVM_INSTANCE_RUNNING);