The patch titled Subject: procfs: add conditional compilation check has been removed from the -mm tree. Its filename was procfs-add-conditional-compilation-check.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Eric Engestrom <eric.engestrom@xxxxxxxxxx> Subject: procfs: add conditional compilation check `proc_timers_operations` is only used when CONFIG_CHECKPOINT_RESTORE is enabled. Signed-off-by: Eric Engestrom <eric.engestrom@xxxxxxxxxx> Acked-by: Cyrill Gorcunov <gorcunov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN fs/proc/base.c~procfs-add-conditional-compilation-check fs/proc/base.c --- a/fs/proc/base.c~procfs-add-conditional-compilation-check +++ a/fs/proc/base.c @@ -2158,6 +2158,7 @@ static const struct file_operations proc .llseek = default_llseek, }; +#ifdef CONFIG_CHECKPOINT_RESTORE struct timers_private { struct pid *pid; struct task_struct *task; @@ -2256,6 +2257,7 @@ static const struct file_operations proc .llseek = seq_lseek, .release = seq_release_private, }; +#endif static ssize_t timerslack_ns_write(struct file *file, const char __user *buf, size_t count, loff_t *offset) _ Patches currently in -mm which might be from eric.engestrom@xxxxxxxxxx are -- 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