The patch titled nbd: use task_pid_nr() to get current pid has been removed from the -mm tree. Its filename was nbd-use-task_pid_nr-to-get-current-pid.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: nbd: use task_pid_nr() to get current pid From: WANG Cong <amwang@xxxxxxxxxx> Signed-off-by: WANG Cong <amwang@xxxxxxxxxx> Cc: Paul Clements <Paul.Clements@xxxxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/nbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/block/nbd.c~nbd-use-task_pid_nr-to-get-current-pid drivers/block/nbd.c --- a/drivers/block/nbd.c~nbd-use-task_pid_nr-to-get-current-pid +++ a/drivers/block/nbd.c @@ -405,7 +405,7 @@ static int nbd_do_it(struct nbd_device * BUG_ON(lo->magic != LO_MAGIC); - lo->pid = current->pid; + lo->pid = task_pid_nr(current); ret = sysfs_create_file(&disk_to_dev(lo->disk)->kobj, &pid_attr.attr); if (ret) { printk(KERN_ERR "nbd: sysfs_create_file failed!"); _ Patches currently in -mm which might be from amwang@xxxxxxxxxx are numa-fix-numa-compile-error-when-sysfs-and-procfs-are-disabled.patch numa-fix-numa-compile-error-when-sysfs-and-procfs-are-disabled-fix.patch linux-next.patch sched-fix-a-memory-leak-in-__sdt_free.patch sysctl-make-config_sysctl_syscall-default-to-n.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