From 587f90b0556af1bede83480fcf637ede2c637ca3 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Wed, 7 Jan 2015 21:44:44 +0000 Subject: [PATCH] ipcs: remove FIXME markup The ipc message q_qbytes information is not in /proc, and it is unlikely it will ever appear to there. Reference: https://lkml.org/lkml/2012/11/25/18 Signed-off-by: Sami Kerola --- sys-utils/ipcutils.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys-utils/ipcutils.c b/sys-utils/ipcutils.c index d1858a06ad..1e18b8a37c 100644 --- a/sys-utils/ipcutils.c +++ b/sys-utils/ipcutils.c @@ -387,10 +387,6 @@ int ipc_msg_get_info(int id, struct msg_data **msgds) if (id > -1) { /* ID specified */ if (id == p->msg_perm.id) { - /* - * FIXME: q_qbytes are not in /proc - * - */ if (msgctl(id, IPC_STAT, &msgseg) != -1) p->q_qbytes = msgseg.msg_qbytes; i = 1; -- 2.47.2