From: Sami Kerola Date: Wed, 7 Jan 2015 21:44:44 +0000 (+0000) Subject: ipcs: remove FIXME markup X-Git-Tag: v2.26-rc1~62^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=587f90b0556af1bede83480fcf637ede2c637ca3;p=thirdparty%2Futil-linux.git 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 --- 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;