All of lore.kernel.org
 help / color / mirror / Atom feed
* [folded] ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes.patch removed from -mm tree
@ 2012-01-10 23:55 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2012-01-10 23:55 UTC (permalink / raw)
  To: akpm, amwang, dledford, mm-commits


The patch titled
     Subject: ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes
has been removed from the -mm tree.  Its filename was
     ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes.patch

This patch was dropped because it was folded into ipc-mqueue-update-maximums-for-the-mqueue-subsystem.patch

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
From: Andrew Morton <akpm@google.com>
Subject: ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes

Cc: Amerigo Wang <amwang@redhat.com>

ERROR: Macros with complex values should be enclosed in parenthesis
#87: FILE: include/linux/ipc_namespace.h:126:
+#define DFLT_MSGSIZEMAX		1024*1024

ERROR: Macros with complex values should be enclosed in parenthesis
#88: FILE: include/linux/ipc_namespace.h:127:
+#define HARD_MSGSIZEMAX	     16*1024*1024

total: 2 errors, 0 warnings, 75 lines checked

./patches/ipc-mqueue-update-maximums-for-the-mqueue-subsystem.patch has style problems, please review.

If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Doug Ledford <dledford@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/linux/ipc_namespace.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN include/linux/ipc_namespace.h~ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes include/linux/ipc_namespace.h
--- a/include/linux/ipc_namespace.h~ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes
+++ a/include/linux/ipc_namespace.h
@@ -123,8 +123,8 @@ extern int mq_init_ns(struct ipc_namespa
 #define HARD_MSGMAX		    65536
 #define MIN_MSGSIZEMAX		      128
 #define DFLT_MSGSIZE		     8192U
-#define DFLT_MSGSIZEMAX		1024*1024
-#define HARD_MSGSIZEMAX	     16*1024*1024
+#define DFLT_MSGSIZEMAX		(1024*1024)
+#define HARD_MSGSIZEMAX	     (16*1024*1024)
 #else
 static inline int mq_init_ns(struct ipc_namespace *ns) { return 0; }
 #endif
_

Patches currently in -mm which might be from akpm@google.com are

linux-next.patch
ipc-mqueue-update-maximums-for-the-mqueue-subsystem.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-01-10 23:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-10 23:55 [folded] ipc-mqueue-update-maximums-for-the-mqueue-subsystem-checkpatch-fixes.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.