latencytop: use the last element of latency_record of system
authorwuchi <wuchi.zero@gmail.com>
Sat, 3 Sep 2022 13:52:33 +0000 (21:52 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 12 Sep 2022 04:55:12 +0000 (21:55 -0700)
commitb814751175470b00969a317bf3192260750f9455
tree6cdb3665e3f05449771b5c27c1591dc9982feb0d
parentbfca3dd3d0680fc2fc7f659a152234afbac26e4d
latencytop: use the last element of latency_record of system

In account_global_scheduler_latency(), when we don't find the matching
latency_record we try to select one which is unused in
latency_record[MAXLR], but the condition will skip the last one.

if (i >= MAXLR-1)

Fix that.

Link: https://lkml.kernel.org/r/20220903135233.5225-1-wuchi.zero@gmail.com
Signed-off-by: wuchi <wuchi.zero@gmail.com>
Reviewed-by: Andrew Morton <akpm@linux-foudation.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
kernel/latencytop.c