* [PATCH v1 1/1] bitops: Move aligned_byte_mask() to wordpart.h
@ 2024-05-07 14:01 Andy Shevchenko
2024-05-07 19:14 ` Yury Norov
0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2024-05-07 14:01 UTC (permalink / raw)
To: Yury Norov, Andy Shevchenko, linux-kernel; +Cc: Rasmus Villemoes
The bitops.h is for bit related operations. The aligned_byte_mask()
is about byte (or part of the machine word) operations, for which
we have a separate header, move the mentioned macro to wordpart.h
to consolidate similar operations.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
include/linux/bitops.h | 7 -------
include/linux/wordpart.h | 7 +++++++
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index 0b561ee6b4a4..ec45284c03f5 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -8,13 +8,6 @@
#include <uapi/linux/kernel.h>
-/* Set bits in the first 'n' bytes when loaded from memory */
-#ifdef __LITTLE_ENDIAN
-# define aligned_byte_mask(n) ((1UL << 8*(n))-1)
-#else
-# define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
-#endif
-
#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
#define BITS_TO_LONGS(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(long))
#define BITS_TO_U64(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u64))
diff --git a/include/linux/wordpart.h b/include/linux/wordpart.h
index f6f8f83b15b0..4ca1ba66d2f0 100644
--- a/include/linux/wordpart.h
+++ b/include/linux/wordpart.h
@@ -39,4 +39,11 @@
*/
#define REPEAT_BYTE(x) ((~0ul / 0xff) * (x))
+/* Set bits in the first 'n' bytes when loaded from memory */
+#ifdef __LITTLE_ENDIAN
+# define aligned_byte_mask(n) ((1UL << 8*(n))-1)
+#else
+# define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
+#endif
+
#endif // _LINUX_WORDPART_H
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/1] bitops: Move aligned_byte_mask() to wordpart.h
2024-05-07 14:01 [PATCH v1 1/1] bitops: Move aligned_byte_mask() to wordpart.h Andy Shevchenko
@ 2024-05-07 19:14 ` Yury Norov
2024-05-07 19:35 ` Andy Shevchenko
0 siblings, 1 reply; 3+ messages in thread
From: Yury Norov @ 2024-05-07 19:14 UTC (permalink / raw)
To: Andy Shevchenko; +Cc: linux-kernel, Rasmus Villemoes
On Tue, May 07, 2024 at 05:01:54PM +0300, Andy Shevchenko wrote:
> The bitops.h is for bit related operations. The aligned_byte_mask()
> is about byte (or part of the machine word) operations, for which
> we have a separate header, move the mentioned macro to wordpart.h
> to consolidate similar operations.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Hi Andy,
I see the macro is used in lib/strnlen_user.c and in lib/usercopy.c.
In case of strnlen_user, the wordpart.h is included via linux/kernel.h,
which is OK to me. But In case of usercopy.c, I can't find how the
header is included.
I'm sure there is some inclusion path, but it's always better to have
the dependencies listed explicitly.
Can you please send a 2nd version with the lib/usercopy.c including
wordpart.h?
Thanks,
Yury
> ---
> include/linux/bitops.h | 7 -------
> include/linux/wordpart.h | 7 +++++++
> 2 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/include/linux/bitops.h b/include/linux/bitops.h
> index 0b561ee6b4a4..ec45284c03f5 100644
> --- a/include/linux/bitops.h
> +++ b/include/linux/bitops.h
> @@ -8,13 +8,6 @@
>
> #include <uapi/linux/kernel.h>
>
> -/* Set bits in the first 'n' bytes when loaded from memory */
> -#ifdef __LITTLE_ENDIAN
> -# define aligned_byte_mask(n) ((1UL << 8*(n))-1)
> -#else
> -# define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
> -#endif
> -
> #define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
> #define BITS_TO_LONGS(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(long))
> #define BITS_TO_U64(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u64))
> diff --git a/include/linux/wordpart.h b/include/linux/wordpart.h
> index f6f8f83b15b0..4ca1ba66d2f0 100644
> --- a/include/linux/wordpart.h
> +++ b/include/linux/wordpart.h
> @@ -39,4 +39,11 @@
> */
> #define REPEAT_BYTE(x) ((~0ul / 0xff) * (x))
>
> +/* Set bits in the first 'n' bytes when loaded from memory */
> +#ifdef __LITTLE_ENDIAN
> +# define aligned_byte_mask(n) ((1UL << 8*(n))-1)
> +#else
> +# define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
> +#endif
> +
> #endif // _LINUX_WORDPART_H
> --
> 2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/1] bitops: Move aligned_byte_mask() to wordpart.h
2024-05-07 19:14 ` Yury Norov
@ 2024-05-07 19:35 ` Andy Shevchenko
0 siblings, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2024-05-07 19:35 UTC (permalink / raw)
To: Yury Norov; +Cc: linux-kernel, Rasmus Villemoes
On Tue, May 07, 2024 at 12:14:58PM -0700, Yury Norov wrote:
> On Tue, May 07, 2024 at 05:01:54PM +0300, Andy Shevchenko wrote:
> > The bitops.h is for bit related operations. The aligned_byte_mask()
> > is about byte (or part of the machine word) operations, for which
> > we have a separate header, move the mentioned macro to wordpart.h
> > to consolidate similar operations.
> >
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>
> Hi Andy,
>
> I see the macro is used in lib/strnlen_user.c and in lib/usercopy.c.
> In case of strnlen_user, the wordpart.h is included via linux/kernel.h,
> which is OK to me. But In case of usercopy.c, I can't find how the
> header is included.
>
> I'm sure there is some inclusion path, but it's always better to have
> the dependencies listed explicitly.
>
> Can you please send a 2nd version with the lib/usercopy.c including
> wordpart.h?
I think it's unrelated right now. The inclusions in usercopy is a mess.
It should be cleaned up in a separate patch for all inclusions.
But okay, making slightly more mess there won't harm :-)
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-05-07 19:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-07 14:01 [PATCH v1 1/1] bitops: Move aligned_byte_mask() to wordpart.h Andy Shevchenko
2024-05-07 19:14 ` Yury Norov
2024-05-07 19:35 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox