Message ID | 20221228144336.133974002@linuxfoundation.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | None | expand |
Hello: This series was applied to bpf/bpf.git (master) by Arnaldo Carvalho de Melo <acme@redhat.com>: On Wed, 28 Dec 2022 15:31:27 +0100 you wrote: > From: David Howells <dhowells@redhat.com> > > [ Upstream commit c3d96f690a790074b508fe183a41e36a00cd7ddd ] > > Provide a CONFIG_PROC_FS=n fallback for proc_create_net_single_write(). > > Also provide a fallback for proc_create_net_data_write(). > > [...] Here is the summary with links: - [6.0,0299/1073] net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() (no matching commit) - [6.0,0742/1073] perf trace: Return error if a system call doesnt exist https://git.kernel.org/bpf/bpf/c/d4223e1776c3 - [6.0,0743/1073] perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number https://git.kernel.org/bpf/bpf/c/eadcab4c7a66 - [6.0,0744/1073] perf trace: Handle failure when trace point folder is missed https://git.kernel.org/bpf/bpf/c/03e9a5d8eb55 - [6.0,0756/1073] perf off_cpu: Fix a typo in BTF tracepoint name, it should be btf_trace_sched_switch https://git.kernel.org/bpf/bpf/c/167b266bf66c - [6.0,0930/1073] igb: Do not free q_vector unless new one was allocated (no matching commit) You are awesome, thank you!
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 81d6e4ec2294..0260f5ea98fe 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -208,8 +208,10 @@ static inline void proc_remove(struct proc_dir_entry *de) {} static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } #define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;}) +#define proc_create_net_data_write(name, mode, parent, ops, write, state_size, data) ({NULL;}) #define proc_create_net(name, mode, parent, state_size, ops) ({NULL;}) #define proc_create_net_single(name, mode, parent, show, data) ({NULL;}) +#define proc_create_net_single_write(name, mode, parent, show, write, data) ({NULL;}) static inline struct pid *tgid_pidfd_to_pid(const struct file *file) {