* [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones
@ 2024-03-20 21:44 Matthew Sakai
2024-03-21 2:41 ` Guenter Roeck
2024-03-21 3:52 ` Eric Biggers
0 siblings, 2 replies; 4+ messages in thread
From: Matthew Sakai @ 2024-03-20 21:44 UTC (permalink / raw)
To: dm-devel; +Cc: Ken Raeburn, Matthew Sakai
From: Ken Raeburn <raeburn@redhat.com>
Reported-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Ken Raeburn <raeburn@redhat.com>
Signed-off-by: Matthew Sakai <msakai@redhat.com>
---
drivers/md/dm-vdo/murmurhash3.c | 18 ++++--------------
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/drivers/md/dm-vdo/murmurhash3.c b/drivers/md/dm-vdo/murmurhash3.c
index 00c9b9c05001..124026cb676a 100644
--- a/drivers/md/dm-vdo/murmurhash3.c
+++ b/drivers/md/dm-vdo/murmurhash3.c
@@ -8,6 +8,8 @@
#include "murmurhash3.h"
+#include <asm/byteorder.h>
+
static inline u64 rotl64(u64 x, s8 r)
{
return (x << r) | (x >> (64 - r));
@@ -16,24 +18,12 @@ static inline u64 rotl64(u64 x, s8 r)
#define ROTL64(x, y) rotl64(x, y)
static __always_inline u64 getblock64(const u64 *p, int i)
{
-#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
- return p[i];
-#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
- return __builtin_bswap64(p[i]);
-#else
-#error "can't figure out byte order"
-#endif
+ return le64_to_cpup(&p[i]);
}
static __always_inline void putblock64(u64 *p, int i, u64 value)
{
-#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
- p[i] = value;
-#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
- p[i] = __builtin_bswap64(value);
-#else
-#error "can't figure out byte order"
-#endif
+ p[i] = cpu_to_le64(value);
}
/* Finalization mix - force all bits of a hash block to avalanche */
--
2.42.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones
2024-03-20 21:44 [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones Matthew Sakai
@ 2024-03-21 2:41 ` Guenter Roeck
2024-03-21 3:52 ` Eric Biggers
1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2024-03-21 2:41 UTC (permalink / raw)
To: Matthew Sakai; +Cc: dm-devel, Ken Raeburn
On Wed, Mar 20, 2024 at 05:44:05PM -0400, Matthew Sakai wrote:
> From: Ken Raeburn <raeburn@redhat.com>
>
> Reported-by: Guenter Roeck <linux@roeck-us.net>
> Signed-off-by: Ken Raeburn <raeburn@redhat.com>
> Signed-off-by: Matthew Sakai <msakai@redhat.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/md/dm-vdo/murmurhash3.c | 18 ++++--------------
> 1 file changed, 4 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/md/dm-vdo/murmurhash3.c b/drivers/md/dm-vdo/murmurhash3.c
> index 00c9b9c05001..124026cb676a 100644
> --- a/drivers/md/dm-vdo/murmurhash3.c
> +++ b/drivers/md/dm-vdo/murmurhash3.c
> @@ -8,6 +8,8 @@
>
> #include "murmurhash3.h"
>
> +#include <asm/byteorder.h>
> +
> static inline u64 rotl64(u64 x, s8 r)
> {
> return (x << r) | (x >> (64 - r));
> @@ -16,24 +18,12 @@ static inline u64 rotl64(u64 x, s8 r)
> #define ROTL64(x, y) rotl64(x, y)
> static __always_inline u64 getblock64(const u64 *p, int i)
> {
> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
> - return p[i];
> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
> - return __builtin_bswap64(p[i]);
> -#else
> -#error "can't figure out byte order"
> -#endif
> + return le64_to_cpup(&p[i]);
> }
>
> static __always_inline void putblock64(u64 *p, int i, u64 value)
> {
> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
> - p[i] = value;
> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
> - p[i] = __builtin_bswap64(value);
> -#else
> -#error "can't figure out byte order"
> -#endif
> + p[i] = cpu_to_le64(value);
> }
>
> /* Finalization mix - force all bits of a hash block to avalanche */
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones
2024-03-20 21:44 [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones Matthew Sakai
2024-03-21 2:41 ` Guenter Roeck
@ 2024-03-21 3:52 ` Eric Biggers
2024-03-21 14:25 ` Matthew Sakai
1 sibling, 1 reply; 4+ messages in thread
From: Eric Biggers @ 2024-03-21 3:52 UTC (permalink / raw)
To: Matthew Sakai; +Cc: dm-devel, Ken Raeburn
On Wed, Mar 20, 2024 at 05:44:05PM -0400, Matthew Sakai wrote:
> static __always_inline u64 getblock64(const u64 *p, int i)
> {
> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
> - return p[i];
> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
> - return __builtin_bswap64(p[i]);
> -#else
> -#error "can't figure out byte order"
> -#endif
> + return le64_to_cpup(&p[i]);
> }
>
> static __always_inline void putblock64(u64 *p, int i, u64 value)
> {
> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
> - p[i] = value;
> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
> - p[i] = __builtin_bswap64(value);
> -#else
> -#error "can't figure out byte order"
> -#endif
> + p[i] = cpu_to_le64(value);
> }
This is very broken. What you're actually looking for is get_unaligned_le64()
and put_unaligned_le64(). And they should be folded directly into the caller.
- Eric
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones
2024-03-21 3:52 ` Eric Biggers
@ 2024-03-21 14:25 ` Matthew Sakai
0 siblings, 0 replies; 4+ messages in thread
From: Matthew Sakai @ 2024-03-21 14:25 UTC (permalink / raw)
To: Eric Biggers; +Cc: dm-devel, Ken Raeburn
On 3/20/24 23:52, Eric Biggers wrote:
> On Wed, Mar 20, 2024 at 05:44:05PM -0400, Matthew Sakai wrote:
>> static __always_inline u64 getblock64(const u64 *p, int i)
>> {
>> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
>> - return p[i];
>> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
>> - return __builtin_bswap64(p[i]);
>> -#else
>> -#error "can't figure out byte order"
>> -#endif
>> + return le64_to_cpup(&p[i]);
>> }
>>
>> static __always_inline void putblock64(u64 *p, int i, u64 value)
>> {
>> -#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
>> - p[i] = value;
>> -#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
>> - p[i] = __builtin_bswap64(value);
>> -#else
>> -#error "can't figure out byte order"
>> -#endif
>> + p[i] = cpu_to_le64(value);
>> }
>
> This is very broken. What you're actually looking for is get_unaligned_le64()
> and put_unaligned_le64(). And they should be folded directly into the caller.
>
> - Eric
>
Thanks for the suggestion. We'll work on a v2 to include this.
Matt
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-03-21 14:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-20 21:44 [PATCH] dm vdo: use kernel byteswapping routines instead of GCC ones Matthew Sakai
2024-03-21 2:41 ` Guenter Roeck
2024-03-21 3:52 ` Eric Biggers
2024-03-21 14:25 ` Matthew Sakai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.