The patch titled Subject: proc-make-the-proc_create-stubs-static-inlines-fix has been added to the -mm tree. Its filename is proc-make-the-proc_create-stubs-static-inlines-fix.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/proc-make-the-proc_create-stubs-static-inlines-fix.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/proc-make-the-proc_create-stubs-static-inlines-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: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: proc-make-the-proc_create-stubs-static-inlines-fix fix CONFIG_PROC_FS=n Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Christian Brauner <christian@xxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Hans de Goede <hdegoede@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/proc_fs.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) --- a/include/linux/proc_fs.h~proc-make-the-proc_create-stubs-static-inlines-fix +++ a/include/linux/proc_fs.h @@ -179,12 +179,14 @@ static inline struct proc_dir_entry *pro #define proc_create_single(name, mode, parent, show) ({NULL;}) #define proc_create_single_data(name, mode, parent, show, data) ({NULL;}) -static inline struct proc_dir_entry *proc_create( - const char *, umode_t, struct proc_dir_entry *, const struct proc_ops *) +static inline struct proc_dir_entry * +proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, + const struct proc_ops *proc_ops) { return NULL; } -static inline struct proc_dir_entry *proc_create_data( - const char *, umode_t, struct proc_dir_entry *, const struct proc_ops *, void *) +static inline struct proc_dir_entry * +proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, + const struct proc_ops *proc_ops, void *data) { return NULL; } static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-bdi-initialize-bdi_min_ratio-when-bdi-unregister-fix.patch kthread-add-the-helper-function-kthread_run_on_cpu-fix.patch mm.patch mm-remove-redundant-check-about-fault_flag_allow_retry-bit-checkpatch-fixes.patch mm-mempolicy-convert-from-atomic_t-to-refcount_t-on-mempolicy-refcnt-fix.patch panic-use-error_report_end-tracepoint-on-warnings-fix.patch linux-next-git-rejects.patch kernel-forkc-export-kernel_thread-to-modules.patch proc-make-the-proc_create-stubs-static-inlines-fix.patch