The patch titled dnotify: move dir_notify_enable declaration has been removed from the -mm tree. Its filename was dnotify-move-dir_notify_enable-declaration.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: dnotify: move dir_notify_enable declaration From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Move dir_notify_enable() declaration to where it belongs: dnotify.h. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Eric Paris <eparis@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/dnotify.h | 1 + include/linux/fs.h | 3 --- kernel/sysctl.c | 1 + 3 files changed, 2 insertions(+), 3 deletions(-) diff -puN include/linux/dnotify.h~dnotify-move-dir_notify_enable-declaration include/linux/dnotify.h --- a/include/linux/dnotify.h~dnotify-move-dir_notify_enable-declaration +++ a/include/linux/dnotify.h @@ -28,6 +28,7 @@ struct dnotify_struct { FS_CREATE | FS_DN_RENAME |\ FS_MOVED_FROM | FS_MOVED_TO) +extern int dir_notify_enable; extern void dnotify_flush(struct file *, fl_owner_t); extern int fcntl_dirnotify(int, struct file *, unsigned long); diff -puN include/linux/fs.h~dnotify-move-dir_notify_enable-declaration include/linux/fs.h --- a/include/linux/fs.h~dnotify-move-dir_notify_enable-declaration +++ a/include/linux/fs.h @@ -407,9 +407,6 @@ extern int get_max_files(void); extern int sysctl_nr_open; extern struct inodes_stat_t inodes_stat; extern int leases_enable, lease_break_time; -#ifdef CONFIG_DNOTIFY -extern int dir_notify_enable; -#endif struct buffer_head; typedef int (get_block_t)(struct inode *inode, sector_t iblock, diff -puN kernel/sysctl.c~dnotify-move-dir_notify_enable-declaration kernel/sysctl.c --- a/kernel/sysctl.c~dnotify-move-dir_notify_enable-declaration +++ a/kernel/sysctl.c @@ -42,6 +42,7 @@ #include <linux/times.h> #include <linux/limits.h> #include <linux/dcache.h> +#include <linux/dnotify.h> #include <linux/syscalls.h> #include <linux/vmstat.h> #include <linux/nfs_fs.h> _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are linux-next.patch bitops-rename-for_each_bit-to-for_each_set_bit.patch arm-convert-proc-cpu-aligment-to-seq_file.patch mpt-fusion-convert-to-seq_file.patch proc-do-translation-unlink-atomically-at-remove_proc_entry.patch proc-warn-on-non-existing-proc-entries.patch tracehooks-kill-some-pt_ptraced-checks.patch tracehooks-check-pt_ptraced-before-reporting-the-single-step.patch ptrace_signal-check-pt_ptraced-before-reporting-a-signal.patch export-__ptrace_detach-and-do_notify_parent_cldstop.patch reorder-the-code-in-kernel-ptracec.patch implement-utrace-ptrace.patch utrace-core.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