From: patchwork-bot+linux-riscv@kernel.org
To: Dmitry Antipov <dmantipov@yandex.ru>
Cc: linux-riscv@lists.infradead.org, akpm@linux-foundation.org,
andriy.shevchenko@intel.com, thecharlesjenkins@gmail.com,
pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu,
alex@ghiti.fr, ardb@kernel.org, linux-efi@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v11 0/8] lib and lib/cmdline enhancements
Date: Fri, 26 Jun 2026 08:21:02 +0000 [thread overview]
Message-ID: <178246206276.3816447.15355853721771645153.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260519172259.908980-1-dmantipov@yandex.ru>
Hello:
This series was applied to riscv/linux.git (fixes)
by Andrew Morton <akpm@linux-foundation.org>:
On Tue, 19 May 2026 20:22:51 +0300 you wrote:
> This series is a merge of the recently posted [1] and [2]. The first
> one is intended to adjust '_parse_integer_limit()' and 'memparse()' to
> not ignore overflows, extend string to 64-bit integer conversion tests,
> add KUnit-based test for 'memparse()' and fix kernel-doc glitches found
> in lib/cmdline.c. The second one was originated from RISCV-specific
> build fixes needed to integrate the former and now aims to provide
> platform-specific double-word shifts and corresponding KUnit test.
>
> [...]
Here is the summary with links:
- [v11,1/8] lib: fix _parse_integer_limit() to handle overflow
https://git.kernel.org/riscv/c/6e30111dbb40
- [v11,2/8] lib: fix memparse() to handle overflow
https://git.kernel.org/riscv/c/9a4580db6e9f
- [v11,3/8] lib: add more string to 64-bit integer conversion overflow tests
https://git.kernel.org/riscv/c/ab90fc100724
- [v11,4/8] lib/cmdline_kunit: add test case for memparse()
(no matching commit)
- [v11,5/8] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings
https://git.kernel.org/riscv/c/117d2bfa0ab1
- [v11,6/8] riscv: add platform-specific double word shifts for riscv32
https://git.kernel.org/riscv/c/a354b8de9ad6
- [v11,7/8] lib: kunit: add tests for __ashldi3(), __ashrdi3(), and __lshrdi3()
https://git.kernel.org/riscv/c/6bba2ae43e8f
- [v11,8/8] riscv: fix building compressed EFI image
(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: Dmitry Antipov <dmantipov@yandex.ru>
Cc: linux-riscv@lists.infradead.org, akpm@linux-foundation.org,
andriy.shevchenko@intel.com, thecharlesjenkins@gmail.com,
pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu,
alex@ghiti.fr, ardb@kernel.org, linux-efi@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v11 0/8] lib and lib/cmdline enhancements
Date: Fri, 26 Jun 2026 08:21:02 +0000 [thread overview]
Message-ID: <178246206276.3816447.15355853721771645153.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260519172259.908980-1-dmantipov@yandex.ru>
Hello:
This series was applied to riscv/linux.git (fixes)
by Andrew Morton <akpm@linux-foundation.org>:
On Tue, 19 May 2026 20:22:51 +0300 you wrote:
> This series is a merge of the recently posted [1] and [2]. The first
> one is intended to adjust '_parse_integer_limit()' and 'memparse()' to
> not ignore overflows, extend string to 64-bit integer conversion tests,
> add KUnit-based test for 'memparse()' and fix kernel-doc glitches found
> in lib/cmdline.c. The second one was originated from RISCV-specific
> build fixes needed to integrate the former and now aims to provide
> platform-specific double-word shifts and corresponding KUnit test.
>
> [...]
Here is the summary with links:
- [v11,1/8] lib: fix _parse_integer_limit() to handle overflow
https://git.kernel.org/riscv/c/6e30111dbb40
- [v11,2/8] lib: fix memparse() to handle overflow
https://git.kernel.org/riscv/c/9a4580db6e9f
- [v11,3/8] lib: add more string to 64-bit integer conversion overflow tests
https://git.kernel.org/riscv/c/ab90fc100724
- [v11,4/8] lib/cmdline_kunit: add test case for memparse()
(no matching commit)
- [v11,5/8] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings
https://git.kernel.org/riscv/c/117d2bfa0ab1
- [v11,6/8] riscv: add platform-specific double word shifts for riscv32
https://git.kernel.org/riscv/c/a354b8de9ad6
- [v11,7/8] lib: kunit: add tests for __ashldi3(), __ashrdi3(), and __lshrdi3()
https://git.kernel.org/riscv/c/6bba2ae43e8f
- [v11,8/8] riscv: fix building compressed EFI image
(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
next prev parent reply other threads:[~2026-06-26 8:21 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-19 17:22 [PATCH v11 0/8] lib and lib/cmdline enhancements Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 1/8] lib: fix _parse_integer_limit() to handle overflow Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 2/8] lib: fix memparse() " Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 3/8] lib: add more string to 64-bit integer conversion overflow tests Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 4/8] lib/cmdline_kunit: add test case for memparse() Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 5/8] lib/cmdline: adjust a few comments to fix kernel-doc -Wreturn warnings Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 6/8] riscv: add platform-specific double word shifts for riscv32 Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 7/8] lib: kunit: add tests for __ashldi3(), __ashrdi3(), and __lshrdi3() Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 17:22 ` [PATCH v11 8/8] riscv: fix building compressed EFI image Dmitry Antipov
2026-05-19 17:22 ` Dmitry Antipov
2026-05-19 19:10 ` [PATCH v11 0/8] lib and lib/cmdline enhancements Andrew Morton
2026-05-19 19:10 ` Andrew Morton
2026-06-26 8:21 ` patchwork-bot+linux-riscv [this message]
2026-06-26 8:21 ` 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=178246206276.3816447.15355853721771645153.git-patchwork-notify@kernel.org \
--to=patchwork-bot+linux-riscv@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=alex@ghiti.fr \
--cc=andriy.shevchenko@intel.com \
--cc=aou@eecs.berkeley.edu \
--cc=ardb@kernel.org \
--cc=dmantipov@yandex.ru \
--cc=linux-efi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=thecharlesjenkins@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.