Re: [PATCH v6 00/15] integrity: Introduce the Integrity Digest Cache

2024-12-05 Thread Roberto Sassu
On Thu, 2024-12-05 at 00:57 +, Eric Snowberg wrote: > > > On Dec 4, 2024, at 3:44 AM, Roberto Sassu > > wrote: > > > > On Tue, 2024-12-03 at 20:06 +, Eric Snowberg wrote: > > > > > > > On Nov 26, 2024, at 3:41 AM, Roberto Sassu > > > > wrote: > > > > > > > > On Tue, 2024-11-26 at 00

Re: [PATCH v6 00/15] integrity: Introduce the Integrity Digest Cache

2024-12-05 Thread Roberto Sassu
On Thu, 2024-12-05 at 09:53 +0100, Roberto Sassu wrote: > On Thu, 2024-12-05 at 00:57 +, Eric Snowberg wrote: > > > > > On Dec 4, 2024, at 3:44 AM, Roberto Sassu > > > wrote: > > > > > > On Tue, 2024-12-03 at 20:06 +, Eric Snowberg wrote: > > > > > > > > > On Nov 26, 2024, at 3:41 AM,

Re: [RFC PATCH v3 13/15] context_tracking,x86: Add infrastructure to defer kernel TLBI

2024-12-05 Thread Petr Tesarik
On Thu, 21 Nov 2024 16:30:16 +0100 Peter Zijlstra wrote: > On Thu, Nov 21, 2024 at 07:07:44AM -0800, Dave Hansen wrote: > > On 11/21/24 03:12, Peter Zijlstra wrote: > > >> I see e.g. ds_clear_cea() clears PTEs that can have the _PAGE_GLOBAL > > >> flag, > > >> and it correctly uses the non-def

[PATCH v2 1/2] Align git commit ID abbreviation guidelines and checks

2024-12-05 Thread Geert Uytterhoeven
The guidelines for git commit ID abbreviation are inconsistent: some places state to use 12 characters exactly, while other places recommend 12 characters or more. The same issue is present in the checkpatch.pl script. E.g. Documentation/dev-tools/checkpatch.rst says: **GIT_COMMIT_ID** The

[PATCH v2 2/2] Increase minimum git commit ID abbreviation to 16 characters

2024-12-05 Thread Geert Uytterhoeven
As of v6.13-rc1, a git repository with all upstream and stable versions of the Linux kernel sources contains more than 13 million objects. Local development trees contain many more, approaching or surpassing sqrt(16^12) = 16777216 objects. Hence according to the Birthday Paradox, collisions of 12-

[PATCH v2 0/2] Align and increase git commit ID abbreviation guidelines and checks

2024-12-05 Thread Geert Uytterhoeven
Hi all, This patch series: - Aligns the documentation and checks to settle on a mininum of 12 characters for git commit ID abbreviations, so larger abbreviations are no longer flagged as a warning by checkpatch.pl, - Increase the minimum recommended abbreviation to 16 character

Re: [PATCH v6 00/15] integrity: Introduce the Integrity Digest Cache

2024-12-05 Thread Eric Snowberg
> On Dec 5, 2024, at 9:16 AM, Roberto Sassu > wrote: > > On Thu, 2024-12-05 at 09:53 +0100, Roberto Sassu wrote: >> On Thu, 2024-12-05 at 00:57 +, Eric Snowberg wrote: >>> On Dec 4, 2024, at 3:44 AM, Roberto Sassu wrote: On Tue, 2024-12-03 at 20:06 +, Eric Snowb

Re: [PATCH v2 2/2] Increase minimum git commit ID abbreviation to 16 characters

2024-12-05 Thread Linus Torvalds
On Thu, 5 Dec 2024 at 10:16, Geert Uytterhoeven wrote: > > Hence according to the Birthday Paradox, collisions of 12-chararacter > git commit IDs are imminent, or already happening. Note that ambiguous commit IDs are not even remotely as scary as this implies. Yes, the current kernel tree has ov

[PATCH 0/3] kselftest framework to introduce TEST_CONFIG_DEPS

2024-12-05 Thread Siddharth Menon
Currently, kselftests does not have a generalised mechanism to skip compilation and run tests when required kernel configuration options are disabled. This patch series addresses this limitation by introducing a new flag, 'TEST_CONFIG_DEPS' in lib.mk, along with corresponding updates to the docu

[PATCH 1/3] docs/kselftests: Explain the usage of TEST_CONFIG_DEPS

2024-12-05 Thread Siddharth Menon
Update documentation to explain the TEST_CONFIG_DEPS flag in lib.mk. TEST_CONFIG_DEPS is used to validate the presence of required config flags specified in the selftest makefile before compiling or running a test. Signed-off-by: Siddharth Menon --- Documentation/dev-tools/kselftest.rst | 3 +++