Commit c0c57ce6 authored by Andrew Morton's avatar Andrew Morton Committed by James Toy

ERROR: spaces required around that ':' (ctx:VxW)

#98: FILE: Documentation/vm/page-types.c:193:
+	__max1 > __max2 ? __max1: __max2; })
 	                        ^

total: 1 errors, 0 warnings, 309 lines checked

./patches/page-types-add-feature-for-walking-process-address-space.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: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 3c153a5a
......@@ -190,7 +190,7 @@ static uint64_t page_flags[HASH_SIZE];
#define max_t(type, x, y) ({ \
type __max1 = (x); \
type __max2 = (y); \
__max1 > __max2 ? __max1: __max2; })
__max1 > __max2 ? __max1 : __max2; })
static unsigned long pages2mb(unsigned long pages)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment