Re: [PATCH 2/2] powerpc/mm: Fix fallthrough bug in hpte_decode

2013-07-22 Thread Aneesh Kumar K.V
"Aneesh Kumar K.V" writes: > From: "Aneesh Kumar K.V" > > We should not fallthrough different case statements in hpte_decode. Add > break statement to break out of the switch. The regression is introduced by > dcda287a9b26309ae43a091d0ecde16f8f61b4c0 "powerpc/mm: Simplify hpte_decode" > > Report

[PATCH 2/2] powerpc/mm: Fix fallthrough bug in hpte_decode

2013-07-03 Thread Aneesh Kumar K.V
From: "Aneesh Kumar K.V" We should not fallthrough different case statements in hpte_decode. Add break statement to break out of the switch. The regression is introduced by dcda287a9b26309ae43a091d0ecde16f8f61b4c0 "powerpc/mm: Simplify hpte_decode" Reported-by: Paul Mackerras Signed-off-by: Ane