summaryrefslogtreecommitdiffstats
path: root/include/linux/mm.h
diff options
context:
space:
mode:
authorBorislav Petkov2015-04-16 01:14:47 +0200
committerLinus Torvalds2015-04-16 01:35:19 +0200
commitcdd7875e0c4db5c41e28b645d3bf7d41bd2cbb45 (patch)
tree486bcaabd95cf1d74a8cc97af67e29563e15f2e0 /include/linux/mm.h
parentmm/memblock.c: add debug output for memblock_add() (diff)
downloadkernel-qcow2-linux-cdd7875e0c4db5c41e28b645d3bf7d41bd2cbb45.tar.gz
kernel-qcow2-linux-cdd7875e0c4db5c41e28b645d3bf7d41bd2cbb45.tar.xz
kernel-qcow2-linux-cdd7875e0c4db5c41e28b645d3bf7d41bd2cbb45.zip
include/linux/mm.h: simplify flag check
Flip the flag test so that it is the simplest. No functional change, just a small readability improvement: No code changed: # arch/x86/kernel/sys_x86_64.o: text data bss dec hex filename 1551 24 0 1575 627 sys_x86_64.o.before 1551 24 0 1575 627 sys_x86_64.o.after md5: 70708d1b1ad35cc891118a69dc1a63f9 sys_x86_64.o.before.asm 70708d1b1ad35cc891118a69dc1a63f9 sys_x86_64.o.after.asm Signed-off-by: Borislav Petkov <bp@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r--include/linux/mm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 515ec5045b60..68c21b2374c4 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1894,10 +1894,10 @@ extern unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info);
static inline unsigned long
vm_unmapped_area(struct vm_unmapped_area_info *info)
{
- if (!(info->flags & VM_UNMAPPED_AREA_TOPDOWN))
- return unmapped_area(info);
- else
+ if (info->flags & VM_UNMAPPED_AREA_TOPDOWN)
return unmapped_area_topdown(info);
+ else
+ return unmapped_area(info);
}
/* truncate.c */