From: patchwork-bot+linux-riscv@kernel.org
To: Yury Norov <ynorov@nvidia.com>
Cc: linux-riscv@lists.infradead.org, pjw@kernel.org,
palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr,
yury.norov@gmail.com, linux@rasmusvillemoes.dk, arnd@arndb.de,
ebiggers@kernel.org, andrew+netdev@lunn.ch, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
akpm@linux-foundation.org, ast@kernel.org, daniel@iogearbox.net,
hawk@kernel.org, john.fastabend@gmail.com, sdf@fomichev.me,
ruanjinjie@huawei.com, linux-kernel@vger.kernel.org,
linux-arch@vger.kernel.org, netdev@vger.kernel.org,
bpf@vger.kernel.org
Subject: Re: [PATCH v2 1/5] arch: select HAVE_ARCH_BITREVERSE conditionally on BITREVERSE
Date: Fri, 26 Jun 2026 08:20:54 +0000 [thread overview]
Message-ID: <178246205401.3816447.633082126458104033.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260506175207.110893-2-ynorov@nvidia.com>
Hello:
This series was applied to riscv/linux.git (fixes)
by Yury Norov <ynorov@nvidia.com>:
On Wed, 6 May 2026 13:52:02 -0400 you wrote:
> Architectures may have bit reversal instructions, but if the API not
> needed, the corresponding option should not be selected because it may
> lead to generating the unneeded code.
>
> Signed-off-by: Yury Norov <ynorov@nvidia.com>
> ---
> arch/arm/Kconfig | 2 +-
> arch/arm64/Kconfig | 2 +-
> arch/loongarch/Kconfig | 2 +-
> arch/mips/Kconfig | 2 +-
> lib/Kconfig | 1 +
> 5 files changed, 5 insertions(+), 4 deletions(-)
Here is the summary with links:
- [v2,1/5] arch: select HAVE_ARCH_BITREVERSE conditionally on BITREVERSE
https://git.kernel.org/riscv/c/42d9c75e8b9c
- [v2,2/5] lib/bitrev: Introduce GENERIC_BITREVERSE
https://git.kernel.org/riscv/c/00751d655ece
- [v2,3/5] bitops: Define generic___bitrev8/16/32 for reuse
https://git.kernel.org/riscv/c/83aede8131af
- [v2,4/5] arch/riscv: Add bitrev.h file to support rev8 and brev8
https://git.kernel.org/riscv/c/e8620bd7e5e0
- [v2,5/5] MAINTAINERS: BITOPS: include bitrev.[ch]
https://git.kernel.org/riscv/c/7b2c5b4e43aa
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
WARNING: multiple messages have this Message-ID (diff)
From: patchwork-bot+linux-riscv@kernel.org
To: Yury Norov <ynorov@nvidia.com>
Cc: linux-riscv@lists.infradead.org, pjw@kernel.org,
palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr,
yury.norov@gmail.com, linux@rasmusvillemoes.dk, arnd@arndb.de,
ebiggers@kernel.org, andrew+netdev@lunn.ch, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
akpm@linux-foundation.org, ast@kernel.org, daniel@iogearbox.net,
hawk@kernel.org, john.fastabend@gmail.com, sdf@fomichev.me,
ruanjinjie@huawei.com, linux-kernel@vger.kernel.org,
linux-arch@vger.kernel.org, netdev@vger.kernel.org,
bpf@vger.kernel.org
Subject: Re: [PATCH v2 1/5] arch: select HAVE_ARCH_BITREVERSE conditionally on BITREVERSE
Date: Fri, 26 Jun 2026 08:20:54 +0000 [thread overview]
Message-ID: <178246205401.3816447.633082126458104033.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260506175207.110893-2-ynorov@nvidia.com>
Hello:
This series was applied to riscv/linux.git (fixes)
by Yury Norov <ynorov@nvidia.com>:
On Wed, 6 May 2026 13:52:02 -0400 you wrote:
> Architectures may have bit reversal instructions, but if the API not
> needed, the corresponding option should not be selected because it may
> lead to generating the unneeded code.
>
> Signed-off-by: Yury Norov <ynorov@nvidia.com>
> ---
> arch/arm/Kconfig | 2 +-
> arch/arm64/Kconfig | 2 +-
> arch/loongarch/Kconfig | 2 +-
> arch/mips/Kconfig | 2 +-
> lib/Kconfig | 1 +
> 5 files changed, 5 insertions(+), 4 deletions(-)
Here is the summary with links:
- [v2,1/5] arch: select HAVE_ARCH_BITREVERSE conditionally on BITREVERSE
https://git.kernel.org/riscv/c/42d9c75e8b9c
- [v2,2/5] lib/bitrev: Introduce GENERIC_BITREVERSE
https://git.kernel.org/riscv/c/00751d655ece
- [v2,3/5] bitops: Define generic___bitrev8/16/32 for reuse
https://git.kernel.org/riscv/c/83aede8131af
- [v2,4/5] arch/riscv: Add bitrev.h file to support rev8 and brev8
https://git.kernel.org/riscv/c/e8620bd7e5e0
- [v2,5/5] MAINTAINERS: BITOPS: include bitrev.[ch]
https://git.kernel.org/riscv/c/7b2c5b4e43aa
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2026-06-26 8:21 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-06 17:52 Yury Norov
2026-05-06 17:52 ` Yury Norov
2026-05-06 17:52 ` [PATCH v2 1/5] arch: select HAVE_ARCH_BITREVERSE conditionally on BITREVERSE Yury Norov
2026-05-06 17:52 ` Yury Norov
2026-05-06 21:37 ` sashiko-bot
2026-05-12 2:25 ` Yury Norov
2026-05-12 2:25 ` Yury Norov
2026-05-19 22:20 ` Yury Norov
2026-05-19 22:20 ` Yury Norov
2026-06-09 1:26 ` Jinjie Ruan
2026-06-09 1:26 ` Jinjie Ruan
2026-06-26 8:20 ` patchwork-bot+linux-riscv [this message]
2026-06-26 8:20 ` patchwork-bot+linux-riscv
2026-05-06 17:52 ` [PATCH v2 2/5] lib/bitrev: Introduce GENERIC_BITREVERSE Yury Norov
2026-05-06 17:52 ` Yury Norov
2026-05-06 21:49 ` sashiko-bot
2026-06-09 1:53 ` Jinjie Ruan
2026-06-09 1:53 ` Jinjie Ruan
2026-05-06 17:52 ` [PATCH v2 3/5] bitops: Define generic___bitrev8/16/32 for reuse Yury Norov
2026-05-06 17:52 ` Yury Norov
2026-05-06 17:52 ` [PATCH v2 4/5] arch/riscv: Add bitrev.h file to support rev8 and brev8 Yury Norov
2026-05-06 17:52 ` Yury Norov
2026-05-06 22:23 ` sashiko-bot
2026-06-09 1:38 ` Jinjie Ruan
2026-06-09 1:38 ` Jinjie Ruan
2026-05-06 17:52 ` [PATCH v2 5/5] MAINTAINERS: BITOPS: include bitrev.[ch] Yury Norov
2026-05-06 17:52 ` Yury Norov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178246205401.3816447.633082126458104033.git-patchwork-notify@kernel.org \
--to=patchwork-bot+linux-riscv@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=alex@ghiti.fr \
--cc=andrew+netdev@lunn.ch \
--cc=aou@eecs.berkeley.edu \
--cc=arnd@arndb.de \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=davem@davemloft.net \
--cc=ebiggers@kernel.org \
--cc=edumazet@google.com \
--cc=hawk@kernel.org \
--cc=john.fastabend@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux@rasmusvillemoes.dk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=ruanjinjie@huawei.com \
--cc=sdf@fomichev.me \
--cc=ynorov@nvidia.com \
--cc=yury.norov@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.