Commit 7a5692e6 authored by Chris Metcalf's avatar Chris Metcalf

arch/powerpc: provide zero_bytemask() for big-endian

For some reason, only the little-endian flavor of
powerpc provided the zero_bytemask() implementation.
Reported-by: default avatarMichal Sojka <sojkam1@fel.cvut.cz>
Acked-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Signed-off-by: default avatarChris Metcalf <cmetcalf@ezchip.com>
parent c6fa8e6d
...@@ -40,6 +40,11 @@ static inline bool has_zero(unsigned long val, unsigned long *data, const struct ...@@ -40,6 +40,11 @@ static inline bool has_zero(unsigned long val, unsigned long *data, const struct
return (val + c->high_bits) & ~rhs; return (val + c->high_bits) & ~rhs;
} }
static inline unsigned long zero_bytemask(unsigned long mask)
{
return ~1ul << __fls(mask);
}
#else #else
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment