The patch titled cciss: assign PDE->data before gluing PDE into /proc tree has been removed from the -mm tree. Its filename was cciss-assign-pde-data-before-gluing-pde-into-proc-tree.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: cciss: assign PDE->data before gluing PDE into /proc tree From: "Denis V. Lunev" <den@xxxxxxxxxx> Simply replace proc_create and further data assigned with proc_create_data. Signed-off-by: Denis V. Lunev <den@xxxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxxx> Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Acked-by: Mike Miller <mike.miller@xxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/cciss.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff -puN drivers/block/cciss.c~cciss-assign-pde-data-before-gluing-pde-into-proc-tree drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-assign-pde-data-before-gluing-pde-into-proc-tree +++ a/drivers/block/cciss.c @@ -428,13 +428,9 @@ static void __devinit cciss_procinit(int proc_cciss = proc_mkdir("driver/cciss", NULL); if (!proc_cciss) return; - pde = proc_create(hba[i]->devname, S_IWUSR | S_IRUSR | S_IRGRP | + pde = proc_create_data(hba[i]->devname, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH, proc_cciss, - &cciss_proc_fops); - if (!pde) - return; - - pde->data = hba[i]; + &cciss_proc_fops, hba[i]); } #endif /* CONFIG_PROC_FS */ _ Patches currently in -mm which might be from den@xxxxxxxxxx are origin.patch git-net.patch powerpc-assign-pde-data-before-gluing-pde-into-proc-tree.patch proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.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