The patch titled task_struct: ifdef Missed'em V IPC has been added to the -mm tree. Its filename is task_struct-ifdef-missedem-v-ipc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: task_struct: ifdef Missed'em V IPC From: Alexey Dobriyan <adobriyan@xxxxxxxxx> ipc/sem.c only. $ agrep sysvsem -w -n ipc/sem.c:912: undo_list = current->sysvsem.undo_list; ipc/sem.c:932: undo_list = current->sysvsem.undo_list; ipc/sem.c:954: undo_list = current->sysvsem.undo_list; ipc/sem.c:963: current->sysvsem.undo_list = undo_list; ipc/sem.c:1247: tsk->sysvsem.undo_list = undo_list; ipc/sem.c:1249: tsk->sysvsem.undo_list = NULL; ipc/sem.c:1271: undo_list = tsk->sysvsem.undo_list; include/linux/sched.h:876: struct sysv_sem sysvsem; Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/sched.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/sched.h~task_struct-ifdef-missedem-v-ipc include/linux/sched.h --- a/include/linux/sched.h~task_struct-ifdef-missedem-v-ipc +++ a/include/linux/sched.h @@ -881,8 +881,10 @@ struct task_struct { - initialized normally by flush_old_exec */ /* file system info */ int link_count, total_link_count; +#ifdef CONFIG_SYSVIPC /* ipc stuff */ struct sysv_sem sysvsem; +#endif /* CPU-specific state of this task */ struct thread_struct thread; /* filesystem information */ _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are include-linux-netfilter_bridgeh-header-cleanup.patch megaraid-fix-warnings-when-config_proc_fs=n.patch git-xfs.patch headers_check-clarify-error-message.patch headers_check-fix-include-regexp.patch task_struct-ifdef-missedem-v-ipc.patch task_struct-ifdef-btrace_seq.patch documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.patch ioctl-messtxt-xfs-typos.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