Re: [PATCH v2] Documentation: kunit: Clarify test filter format

2024-05-14 Thread Jonathan Corbet
Brendan Jackman writes: > On Wed, Apr 03, 2024 at 02:59:43PM -0700, Daniel Latypov wrote: >> Reviewed-by: Daniel Latypov > > Hi Jonathan, I think this is ready to be applied? I'm happy to take this, but normally these patches go through the kunit tree, so I've not been paying much attention. L

Re: [PATCH v10 0/5] Introduce mseal

2024-05-14 Thread Jonathan Corbet
Andrew Morton writes: > On Mon, 15 Apr 2024 16:35:19 + jef...@chromium.org wrote: > >> This patchset proposes a new mseal() syscall for the Linux kernel. > > I have not moved this into mm-stable for a 6.10 merge. Mainly because > of the total lack of Reviewed-by:s and Acked-by:s. > > The cod

Re: [PATCH] Documentation: kunit: correct KUNIT_VERY_SLOW to KUNIT_SPEED_VERY_SLOW

2024-04-02 Thread Jonathan Corbet
David Gow writes: > On Wed, 20 Mar 2024 at 16:18, Kemeng Shi wrote: >> >> There is no KUNIT_VERY_SLOW, I guess we mean KUNIT_SPEED_VERY_SLOW. >> >> Signed-off-by: Kemeng Shi >> --- > > Nice catch, thanks! > > Reviewed-by: David Gow Let me know if you'd like me to pick this up; otherwise I'm a

Re: [PATCH v7 0/4] Introduce mseal()

2024-01-31 Thread Jonathan Corbet
Jeff Xu writes: > On Mon, Jan 29, 2024 at 2:37 PM Jonathan Corbet wrote: >> >> jef...@chromium.org writes: >> >> > Although the initial version of this patch series is targeting the >> > Chrome browser as its first user, it became evident during upstream &

Re: [PATCH v7 0/4] Introduce mseal()

2024-01-29 Thread Jonathan Corbet
jef...@chromium.org writes: > Although the initial version of this patch series is targeting the > Chrome browser as its first user, it became evident during upstream > discussions that we would also want to ensure that the patch set > eventually is a complete solution for memory sealing and compa

Re: [RFC PATCH v4 4/4] mseal:add documentation

2024-01-16 Thread Jonathan Corbet
jef...@chromium.org writes: > From: Jeff Xu > > Add documentation for mseal(). > > Signed-off-by: Jeff Xu > --- > Documentation/userspace-api/mseal.rst | 181 ++ > 1 file changed, 181 insertions(+) > create mode 100644 Documentation/userspace-api/mseal.rst You need to

Re: [RFC PATCH v2 04/10] docs: submitting-patches: Introduce Tested-with:

2023-12-05 Thread Jonathan Corbet
Nikolai Kondrashov writes: > Introduce a new tag, 'Tested-with:', documented in the > Documentation/process/submitting-patches.rst file. > > The tag is expected to contain the test suite command which was executed > for the commit, and to certify it passed. Additionally, it can contain a > URL po

Re: [PATCH v2 2/7] Documentation/sphinx: fix Python string escapes

2023-09-12 Thread Jonathan Corbet
Benjamin Gray writes: > Python 3.6 introduced a DeprecationWarning for invalid escape sequences. > This is upgraded to a SyntaxWarning in Python 3.12, and will eventually > be a syntax error. > > Fix these now to get ahead of it before it's an error. > > Signed-off-by: Benjamin Gray > --- > Doc