The patch titled Subject: proc: use "unsigned int" for /proc/*/stack has been added to the -mm tree. Its filename is proc-use-unsigned-int-for-proc-stack.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/proc-use-unsigned-int-for-proc-stack.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/proc-use-unsigned-int-for-proc-stack.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: proc: use "unsigned int" for /proc/*/stack struct stack_trace::nr_entries is defined as "unsigned int" (YAY!) so the iterator should be unsigned as well. It saves 1 byte of code or something like that. Link: http://lkml.kernel.org/r/20180423215248.GG9043@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/base.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/proc/base.c~proc-use-unsigned-int-for-proc-stack fs/proc/base.c --- a/fs/proc/base.c~proc-use-unsigned-int-for-proc-stack +++ a/fs/proc/base.c @@ -419,7 +419,6 @@ static int proc_pid_stack(struct seq_fil struct stack_trace trace; unsigned long *entries; int err; - int i; entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL); if (!entries) @@ -432,6 +431,8 @@ static int proc_pid_stack(struct seq_fil err = lock_trace(task); if (!err) { + unsigned int i; + save_stack_trace_tsk(task, &trace); for (i = 0; i < trace.nr_entries; i++) { _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are proc-make-proc-cmdline-go-through-lsm.patch proc-more-unsigned-int-in-proc-cmdline.patch proc-somewhat-simpler-code-for-proc-cmdline.patch proc-simpler-iterations-for-proc-cmdline.patch proc-deduplicate-proc-cmdline-implementation.patch proc-smaller-rcu-section-in-getattr.patch proc-use-unsigned-int-in-proc_fill_cache.patch proc-skip-branch-in-proc-lookup.patch proc-use-unsigned-int-for-sigqueue-length.patch proc-use-unsigned-int-for-proc-stack.patch coredump-fix-spam-with-zero-vma-process.patch seq_file-delete-small-value-optimization.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