Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ac13462 authored by Jesper Juhl's avatar Jesper Juhl Committed by Ingo Molnar
Browse files

x86: Use "do { } while(0)" for empty flush_tlb_fix_spurious_fault() macro



If one builds the kernel with -Wempty-body one gets this
warning:

  mm/memory.c:3432:46: warning: suggest braces around empty body in an ¡if¢ statement [-Wempty-body]

due to the fact that 'flush_tlb_fix_spurious_fault' is a macro
that can sometimes be defined to nothing.

Signed-off-by: default avatarJesper Juhl <jj@chaosbits.net>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: linux-mm@kvack.org
Cc: Michel Lespinasse <walken@google.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Link: http://lkml.kernel.org/r/alpine.LNX.2.00.1112180128070.21784@swampdragon.chaosbits.net


Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent d059f24a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -703,7 +703,7 @@ static inline void ptep_set_wrprotect(struct mm_struct *mm,
	pte_update(mm, addr, ptep);
	pte_update(mm, addr, ptep);
}
}


#define flush_tlb_fix_spurious_fault(vma, address)
#define flush_tlb_fix_spurious_fault(vma, address) do { } while (0)


#define mk_pmd(page, pgprot)   pfn_pmd(page_to_pfn(page), (pgprot))
#define mk_pmd(page, pgprot)   pfn_pmd(page_to_pfn(page), (pgprot))