From: Andrew Morton ERROR: Macros with complex values should be enclosed in parenthesis #55: FILE: ipc/mqueue.c:62: +#define MAX_MSGSIZEMAX 8192*128 /* max value for msgsize_max */ total: 1 errors, 0 warnings, 39 lines checked ./patches/message-queues-increase-range-limits.patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Al Viro Cc: Joe Korty Cc: Manfred Spraul Cc: Nadia Derbey Signed-off-by: Andrew Morton --- ipc/mqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN ipc/mqueue.c~message-queues-increase-range-limits-checkpatch-fixes ipc/mqueue.c --- a/ipc/mqueue.c~message-queues-increase-range-limits-checkpatch-fixes +++ a/ipc/mqueue.c @@ -59,7 +59,7 @@ #define MIN_MSGMAX 1 /* min value for msg_max */ #define MAX_MSGMAX HARD_MSGMAX /* max value for msg_max */ #define MIN_MSGSIZEMAX 128 /* min value for msgsize_max */ -#define MAX_MSGSIZEMAX 8192*128 /* max value for msgsize_max */ +#define MAX_MSGSIZEMAX (8192*128) /* max value for msgsize_max */ struct ext_wait_queue { /* queue of sleeping tasks */ struct task_struct *task; _