diff --git a/cr-show.c b/cr-show.c index 9c9e2d6a7..eeb70426b 100644 --- a/cr-show.c +++ b/cr-show.c @@ -551,7 +551,7 @@ static int cr_show_all(unsigned long pid, struct cr_options *opts) LIST_HEAD(pstree_list); int i, ret = -1; - cr_fdset = cr_show_fdset_open(pid, CR_FD_DESC_PSTREE); + cr_fdset = cr_show_fdset_open(pid, CR_FD_DESC_PSTREE | CR_FD_DESC_SK_QUEUES); if (!cr_fdset) goto out; diff --git a/include/crtools.h b/include/crtools.h index 175f3713a..e110218e7 100644 --- a/include/crtools.h +++ b/include/crtools.h @@ -101,6 +101,7 @@ struct cr_fdset { #define CR_FD_DESC_USE(type) ((1 << (type))) #define CR_FD_DESC_CORE CR_FD_DESC_USE(CR_FD_CORE) #define CR_FD_DESC_PSTREE CR_FD_DESC_USE(CR_FD_PSTREE) +#define CR_FD_DESC_SK_QUEUES CR_FD_DESC_USE(CR_FD_SK_QUEUES) #define CR_FD_DESC_TASK (\ CR_FD_DESC_USE(CR_FD_FDINFO) |\ CR_FD_DESC_USE(CR_FD_PAGES) |\