[2.6.22.y] {02/17} - invalid-semicolon - series for stable kernel #2

From: Oliver Pinter (Pintér Olivér)
Date: Fri Feb 01 2008 - 20:33:57 EST


mainline: 2b02d13996fe28478e45605de9bd8bdca25718de

--
Thanks,
Oliver
--- Begin Message --- A similar fix to netfilter from Eric Dumazet inspired me to
look around a bit by using some grep/sed stuff as looking for
this kind of bugs seemed easy to automate. This is one of them
I found where it looks like this semicolon is not valid.

Signed-off-by: Ilpo J�¤rvinen <ilpo.jarvinen@xxxxxxxxxxx>
Acked-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx>
Signed-off-by: Paul Mackerras <paulus@xxxxxxxxx>

---
arch/powerpc/mm/hash_utils_64.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/arch/powerpc/mm/hash_utils_64.c 2007-07-08 19:32:17.000000000 -0400
+++ b/arch/powerpc/mm/hash_utils_64.c 2007-08-27 14:01:20.000000000 -0400
@@ -795,7 +795,7 @@ void hash_preload(struct mm_struct *mm,

#ifdef CONFIG_PPC_MM_SLICES
/* We only prefault standard pages for now */
- if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize));
+ if (unlikely(get_slice_psize(mm, ea) != mm->context.user_psize))
return;
#endif


--- End Message ---