From 9ef1cb99b666c9eed532471bb18c380c5b6f6e39 Mon Sep 17 00:00:00 2001 From: Kinsbursky Stanislav Date: Wed, 8 Feb 2012 15:50:03 +0300 Subject: [PATCH] show: add IPC variables to "show all" command Signed-off-by: Stanislav Kinsbursky Acked-by: Pavel Emelyanov Signed-off-by: Cyrill Gorcunov --- namespaces.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/namespaces.c b/namespaces.c index 882e5758b..6d9087081 100644 --- a/namespaces.c +++ b/namespaces.c @@ -125,6 +125,9 @@ int try_show_namespaces(int ns_pid) if (fdset->fds[CR_FD_UTSNS] != -1) show_utsns(fdset->fds[CR_FD_UTSNS]); + if (fdset->fds[CR_FD_IPCNS_VAR] != -1) + show_ipc_var(fdset->fds[CR_FD_IPCNS_VAR]); + close_cr_fdset(&fdset); return 0; }