The patch titled Subject: proc: fix BUILD_BUG_ON breakage on powerpc64-allyesconfig has been added to the -mm tree. Its filename is proc-fixup-pde-allocation-bloat-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/proc-fixup-pde-allocation-bloat-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/proc-fixup-pde-allocation-bloat-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: proc: fix BUILD_BUG_ON breakage on powerpc64-allyesconfig Link: http://lkml.kernel.org/r/20180703191602.GA25521@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Reported-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/internal.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff -puN fs/proc/internal.h~proc-fixup-pde-allocation-bloat-fix fs/proc/internal.h --- a/fs/proc/internal.h~proc-fixup-pde-allocation-bloat-fix +++ a/fs/proc/internal.h @@ -65,12 +65,12 @@ struct proc_dir_entry { char inline_name[]; } __randomize_layout; -#ifdef CONFIG_64BIT -#define SIZEOF_PDE (sizeof(spinlock_t) <= 4 ? 192 : 256) -#else -#define SIZEOF_PDE (sizeof(spinlock_t) <= 4 ? 128 : 192) -#endif - +#define SIZEOF_PDE ( \ + sizeof(struct proc_dir_entry) < 128 ? 128 : \ + sizeof(struct proc_dir_entry) < 192 ? 192 : \ + sizeof(struct proc_dir_entry) < 256 ? 256 : \ + sizeof(struct proc_dir_entry) < 512 ? 512 : \ + 0) #define SIZEOF_PDE_INLINE_NAME (SIZEOF_PDE - sizeof(struct proc_dir_entry)) extern struct kmem_cache *proc_dir_entry_cache; _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are proc-fixup-pde-allocation-bloat.patch proc-fixup-pde-allocation-bloat-fix.patch proc-test-proc-self-symlink.patch proc-test-proc-thread-self-symlink.patch proc-smaller-readlock-section-in-readdir-proc.patch proc-put-task-earlier-in-proc-fail-nth.patch proc-save-2-atomic-ops-on-write-to-proc-attr.patch proc-use-macro-in-proc-latency-hook.patch proc-spread-const-a-bit.patch proc-use-unsigned-int-in-proc-stat-hook.patch proc-use-%02u-format.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html