aboutsummaryrefslogtreecommitdiffstats
path: root/mm/memory.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2012-12-17 18:59:24 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 20:15:12 -0500
commitb3dd20709db2cab0da0ade1f246fd6e6ab1396eb (patch)
treef0115494a35ec2179471c8aa87262ef4b9b9da1c /mm/memory.c
parentd7124073add4cd04508f9ae3adc2746c61d7e78b (diff)
mm/memory.c: suppress warning
gcc-4.4.4 screws this up. mm/memory.c: In function 'do_pmd_numa_page': mm/memory.c:3594: warning: no return statement in function returning non-void Cc: Mel Gorman <mgorman@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r--mm/memory.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/memory.c b/mm/memory.c
index e6a3b933517e..23f1fdfdfcf1 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -3590,6 +3590,7 @@ static int do_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
3590 unsigned long addr, pmd_t *pmdp) 3590 unsigned long addr, pmd_t *pmdp)
3591{ 3591{
3592 BUG(); 3592 BUG();
3593 return 0;
3593} 3594}
3594#endif /* CONFIG_NUMA_BALANCING */ 3595#endif /* CONFIG_NUMA_BALANCING */
3595 3596