The patch titled remove unused o_flags from do_shmat has been removed from the -mm tree. Its filename is remove-unused-o_flags-from-do_shmat.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: remove unused o_flags from do_shmat From: Hugh Dickins <hugh@xxxxxxxxxxx> Remove the unused variable o_flags from do_shmat. Signed-off-by: Hugh Dickins <hugh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- ipc/shm.c | 3 --- 1 file changed, 3 deletions(-) diff -puN ipc/shm.c~remove-unused-o_flags-from-do_shmat ipc/shm.c --- a/ipc/shm.c~remove-unused-o_flags-from-do_shmat +++ a/ipc/shm.c @@ -698,7 +698,6 @@ long do_shmat(int shmid, char __user *sh int err; unsigned long flags; unsigned long prot; - unsigned long o_flags; int acc_mode; void *user_addr; @@ -725,11 +724,9 @@ long do_shmat(int shmid, char __user *sh if (shmflg & SHM_RDONLY) { prot = PROT_READ; - o_flags = O_RDONLY; acc_mode = S_IRUGO; } else { prot = PROT_READ | PROT_WRITE; - o_flags = O_RDWR; acc_mode = S_IRUGO | S_IWUGO; } if (shmflg & SHM_EXEC) { _ Patches currently in -mm which might be from hugh@xxxxxxxxxxx are origin.patch mm-vm_bug_on.patch mm-remove-vm_locked-before-remap_pfn_range-and-drop-vm_shm.patch page-migration-support-a-vma-migration-function.patch allow-migration-of-mlocked-pages.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