diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2021-04-22 22:02:25 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2021-05-12 21:34:14 +0200 |
commit | 01aee8fd7fb23049e2b52abadbe1f7b5e94a52d2 (patch) | |
tree | 3724c38c4e041eea6037ff5fc206972457f6cc6b /fs/proc/stat.c | |
parent | sched: Fix leftover comment typos (diff) | |
download | linux-01aee8fd7fb23049e2b52abadbe1f7b5e94a52d2.tar.xz linux-01aee8fd7fb23049e2b52abadbe1f7b5e94a52d2.zip |
sched: Make nr_running() return 32-bit value
Creating 2**32 tasks is impossible due to futex pid limits and wasteful
anyway. Nobody has done it.
Bring nr_running() into 32-bit world to save on REX prefixes.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20210422200228.1423391-1-adobriyan@gmail.com
Diffstat (limited to 'fs/proc/stat.c')
-rw-r--r-- | fs/proc/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/stat.c b/fs/proc/stat.c index f25e8531fd27..941605de7f9a 100644 --- a/fs/proc/stat.c +++ b/fs/proc/stat.c @@ -200,7 +200,7 @@ static int show_stat(struct seq_file *p, void *v) "\nctxt %llu\n" "btime %llu\n" "processes %lu\n" - "procs_running %lu\n" + "procs_running %u\n" "procs_blocked %lu\n", nr_context_switches(), (unsigned long long)boottime.tv_sec, |