The patch titled Subject: proc: use "unsigned int" for sigqueue length has been removed from the -mm tree. Its filename was proc-use-unsigned-int-for-sigqueue-length.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: proc: use "unsigned int" for sigqueue length It's defined as atomic_t and really long signal queues are unheard of. Link: http://lkml.kernel.org/r/20180423215119.GF9043@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/array.c~proc-use-unsigned-int-for-sigqueue-length fs/proc/array.c --- a/fs/proc/array.c~proc-use-unsigned-int-for-sigqueue-length +++ a/fs/proc/array.c @@ -268,7 +268,7 @@ static inline void task_sig(struct seq_f unsigned long flags; sigset_t pending, shpending, blocked, ignored, caught; int num_threads = 0; - unsigned long qsize = 0; + unsigned int qsize = 0; unsigned long qlim = 0; sigemptyset(&pending); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are proc-skip-branch-in-proc-lookup.patch coredump-fix-spam-with-zero-vma-process.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