From: Christoph Hellwig Date: Tue, 15 May 2018 14:06:04 +0000 (+0200) Subject: proc: update SIZEOF_PDE_INLINE_NAME for the new pde fields X-Git-Tag: v4.18-rc1~5^2~16 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2f4293973d4eb8b6eb2f21f3db24461ac2b9e928;p=uclinux-h8%2Flinux.git proc: update SIZEOF_PDE_INLINE_NAME for the new pde fields This makes Alexey happy and Al groan. Based on a patch from Alexey Dobriyan. Signed-off-by: Christoph Hellwig --- diff --git a/fs/proc/internal.h b/fs/proc/internal.h index 84c68508a256..a318ae5b36b4 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h @@ -62,9 +62,9 @@ struct proc_dir_entry { umode_t mode; u8 namelen; #ifdef CONFIG_64BIT -#define SIZEOF_PDE_INLINE_NAME (192-139) +#define SIZEOF_PDE_INLINE_NAME (192-155) #else -#define SIZEOF_PDE_INLINE_NAME (128-87) +#define SIZEOF_PDE_INLINE_NAME (128-95) #endif char inline_name[SIZEOF_PDE_INLINE_NAME]; } __randomize_layout;