Re: [PATCH v6 0/2] shrink lib/string.i via IWYU

2024-02-01 Thread Kees Cook
On Tue, 26 Dec 2023 17:59:59 +, Tanzir Hasan wrote: > This patch series changes the include list of string.c to minimize > the preprocessing size. The patch series intends to remove REPEAT_BYE > from kernel.h and move it into its own header file because > word-at-a-time.h has an implicit depend

[PATCH v6 0/2] shrink lib/string.i via IWYU

2023-12-26 Thread Tanzir Hasan
This patch series changes the include list of string.c to minimize the preprocessing size. The patch series intends to remove REPEAT_BYE from kernel.h and move it into its own header file because word-at-a-time.h has an implicit dependancy on it but it is declared in kernel.h which is bloated. ---