The patch titled proc: remove dummy vmcore_open() has been removed from the -mm tree. Its filename was proc-remove-dummy-vmcore_open.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: proc: remove dummy vmcore_open() From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Empty ->open is equvivalent to always succeeding ->open. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/vmcore.c | 6 ------ 1 file changed, 6 deletions(-) diff -puN fs/proc/vmcore.c~proc-remove-dummy-vmcore_open fs/proc/vmcore.c --- a/fs/proc/vmcore.c~proc-remove-dummy-vmcore_open +++ a/fs/proc/vmcore.c @@ -162,14 +162,8 @@ static ssize_t read_vmcore(struct file * return acc; } -static int open_vmcore(struct inode *inode, struct file *filp) -{ - return 0; -} - const struct file_operations proc_vmcore_operations = { .read = read_vmcore, - .open = open_vmcore, }; static struct vmcore* __init get_new_element(void) _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch tags-skip-in-filenames.patch mpt-remove-unused-struct-mpt_proc_entry_t.patch cpuset-use-seq_cpumask-seq_nodemask.patch compat_binfmt_elf-definition-tweak.patch proc-move-sysrq-trigger-out-of-fs-proc.patch sysctl-simplify-strategy.patch fs-kconfig-move-ext2-ext3-ext4-jbd-jbd2-out.patch fs-kconfig-move-cifs-out.patch proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.patch likely_prof-changed-to-use-proc_create.patch proc-remove-proc_root-from-drivers-likelyprof.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