From: patchwork-bot+linux-riscv@kernel.org <patchwork-bot+linux-riscv@kernel.org>
To: kvm-riscv@lists.infradead.org
Subject: [PATCH v2 0/5] riscv: cleanup assembly usage of ENTRY()/END() and use local labels
Date: Tue, 07 Nov 2023 06:50:26 +0000 [thread overview]
Message-ID: <169933982669.6233.10371170118616950256.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231024132655.730417-1-cleger@rivosinc.com>
Hello:
This series was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:
On Tue, 24 Oct 2023 15:26:50 +0200 you wrote:
> This series does a cleanup of all ENTRY()/END() macros that are used in
> arch/riscv/ as well as use of local labels. This allows to remove the
> use of the now deprecated ENTRY()/END()/WEAK() macros as well as using
> the new SYM_*() ones which provide a better understanding of what is
> meant to be annotated. Some wrong usage of SYM_FUNC_START() are also
> fixed in this series by using the correct annotations. Finally a few
> labels that were meant to be local have been renamed to use the .L
> suffix and thus not to be emitted as visible symbols.
>
> [...]
Here is the summary with links:
- [v2,1/5] riscv: use ".L" local labels in assembly when applicable
https://git.kernel.org/riscv/c/b18f7296fbfd
- [v2,2/5] riscv: Use SYM_*() assembly macros instead of deprecated ones
https://git.kernel.org/riscv/c/76329c693924
- [v2,3/5] riscv: kernel: Use correct SYM_DATA_*() macro for data
https://git.kernel.org/riscv/c/4cc0d8a3f109
- [v2,4/5] riscv: kvm: Use SYM_*() assembly macros instead of deprecated ones
(no matching commit)
- [v2,5/5] riscv: kvm: use ".L" local labels in assembly when applicable
(no matching commit)
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: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2VyIDxjbGVnZXJAcml2b3NpbmMuY29tPg==?=@ci.codeaurora.org
Cc: linux-riscv@lists.infradead.org, paul.walmsley@sifive.com,
palmer@dabbelt.com, aou@eecs.berkeley.edu, anup@brainfault.org,
atishp@atishpatra.org, ajones@ventanamicro.com,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
kvm-riscv@lists.infradead.org
Subject: Re: [PATCH v2 0/5] riscv: cleanup assembly usage of ENTRY()/END() and use local labels
Date: Tue, 07 Nov 2023 06:50:26 +0000 [thread overview]
Message-ID: <169933982669.6233.10371170118616950256.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231024132655.730417-1-cleger@rivosinc.com>
Hello:
This series was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:
On Tue, 24 Oct 2023 15:26:50 +0200 you wrote:
> This series does a cleanup of all ENTRY()/END() macros that are used in
> arch/riscv/ as well as use of local labels. This allows to remove the
> use of the now deprecated ENTRY()/END()/WEAK() macros as well as using
> the new SYM_*() ones which provide a better understanding of what is
> meant to be annotated. Some wrong usage of SYM_FUNC_START() are also
> fixed in this series by using the correct annotations. Finally a few
> labels that were meant to be local have been renamed to use the .L
> suffix and thus not to be emitted as visible symbols.
>
> [...]
Here is the summary with links:
- [v2,1/5] riscv: use ".L" local labels in assembly when applicable
https://git.kernel.org/riscv/c/b18f7296fbfd
- [v2,2/5] riscv: Use SYM_*() assembly macros instead of deprecated ones
https://git.kernel.org/riscv/c/76329c693924
- [v2,3/5] riscv: kernel: Use correct SYM_DATA_*() macro for data
https://git.kernel.org/riscv/c/4cc0d8a3f109
- [v2,4/5] riscv: kvm: Use SYM_*() assembly macros instead of deprecated ones
(no matching commit)
- [v2,5/5] riscv: kvm: use ".L" local labels in assembly when applicable
(no matching commit)
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
WARNING: multiple messages have this Message-ID (diff)
From: patchwork-bot+linux-riscv@kernel.org
To: =?utf-8?b?Q2zDqW1lbnQgTMOpZ2VyIDxjbGVnZXJAcml2b3NpbmMuY29tPg==?=@ci.codeaurora.org
Cc: linux-riscv@lists.infradead.org, paul.walmsley@sifive.com,
palmer@dabbelt.com, aou@eecs.berkeley.edu, anup@brainfault.org,
atishp@atishpatra.org, ajones@ventanamicro.com,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
kvm-riscv@lists.infradead.org
Subject: Re: [PATCH v2 0/5] riscv: cleanup assembly usage of ENTRY()/END() and use local labels
Date: Tue, 07 Nov 2023 06:50:26 +0000 [thread overview]
Message-ID: <169933982669.6233.10371170118616950256.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231024132655.730417-1-cleger@rivosinc.com>
Hello:
This series was applied to riscv/linux.git (for-next)
by Palmer Dabbelt <palmer@rivosinc.com>:
On Tue, 24 Oct 2023 15:26:50 +0200 you wrote:
> This series does a cleanup of all ENTRY()/END() macros that are used in
> arch/riscv/ as well as use of local labels. This allows to remove the
> use of the now deprecated ENTRY()/END()/WEAK() macros as well as using
> the new SYM_*() ones which provide a better understanding of what is
> meant to be annotated. Some wrong usage of SYM_FUNC_START() are also
> fixed in this series by using the correct annotations. Finally a few
> labels that were meant to be local have been renamed to use the .L
> suffix and thus not to be emitted as visible symbols.
>
> [...]
Here is the summary with links:
- [v2,1/5] riscv: use ".L" local labels in assembly when applicable
https://git.kernel.org/riscv/c/b18f7296fbfd
- [v2,2/5] riscv: Use SYM_*() assembly macros instead of deprecated ones
https://git.kernel.org/riscv/c/76329c693924
- [v2,3/5] riscv: kernel: Use correct SYM_DATA_*() macro for data
https://git.kernel.org/riscv/c/4cc0d8a3f109
- [v2,4/5] riscv: kvm: Use SYM_*() assembly macros instead of deprecated ones
(no matching commit)
- [v2,5/5] riscv: kvm: use ".L" local labels in assembly when applicable
(no matching commit)
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2023-11-07 6:50 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-24 13:26 [PATCH v2 0/5] riscv: cleanup assembly usage of ENTRY()/END() and use local labels Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` [PATCH v2 1/5] riscv: use ".L" local labels in assembly when applicable Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` [PATCH v2 2/5] riscv: Use SYM_*() assembly macros instead of deprecated ones Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 15:23 ` Andrew Jones
2023-10-24 15:23 ` Andrew Jones
2023-10-24 15:23 ` Andrew Jones
2023-10-24 18:03 ` Clément Léger
2023-10-24 18:03 ` Clément Léger
2023-10-24 18:03 ` Clément Léger
2023-10-25 6:50 ` Andrew Jones
2023-10-25 6:50 ` Andrew Jones
2023-10-25 6:50 ` Andrew Jones
2023-10-26 7:53 ` Clément Léger
2023-10-26 7:53 ` Clément Léger
2023-10-26 7:53 ` Clément Léger
2023-10-24 13:26 ` [PATCH v2 3/5] riscv: kernel: Use correct SYM_DATA_*() macro for data Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` [PATCH v2 4/5] riscv: kvm: Use SYM_*() assembly macros instead of deprecated ones Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-11-06 17:47 ` Palmer Dabbelt
2023-11-06 17:47 ` Palmer Dabbelt
2023-11-06 17:47 ` Palmer Dabbelt
2023-12-13 6:16 ` Anup Patel
2023-12-13 6:16 ` Anup Patel
2023-12-13 6:16 ` Anup Patel
2023-10-24 13:26 ` [PATCH v2 5/5] riscv: kvm: use ".L" local labels in assembly when applicable Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-10-24 13:26 ` Clément Léger
2023-11-06 17:47 ` Palmer Dabbelt
2023-11-06 17:47 ` Palmer Dabbelt
2023-11-06 17:47 ` Palmer Dabbelt
2023-12-13 6:16 ` Anup Patel
2023-12-13 6:16 ` Anup Patel
2023-12-13 6:16 ` Anup Patel
2023-11-07 6:50 ` patchwork-bot+linux-riscv [this message]
2023-11-07 6:50 ` [PATCH v2 0/5] riscv: cleanup assembly usage of ENTRY()/END() and use local labels patchwork-bot+linux-riscv
2023-11-07 6:50 ` patchwork-bot+linux-riscv
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=169933982669.6233.10371170118616950256.git-patchwork-notify@kernel.org \
--to=patchwork-bot+linux-riscv@kernel.org \
--cc=kvm-riscv@lists.infradead.org \
/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.