From 0b83e26373d2b81fc40318f2bb03a2b81525ab1c Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 8 Mar 2021 11:25:15 +0100 Subject: [PATCH] lscpu: add info that caches sizes are sum Addresses: https://github.com/karelzak/util-linux/issues/1258 Signed-off-by: Karel Zak --- sys-utils/lscpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 729e3e1dc..b1d162c92 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -1040,7 +1040,7 @@ static void print_summary(struct lscpu_cxt *cxt) /* The caches are sorted by name, cxt->caches[] may contains * multiple instances for the same name. */ - sec = add_summary_e(tb, NULL, _("Caches:")); + sec = add_summary_e(tb, NULL, _("Caches (sum of all):")); for (i = 0; i < cxt->ncaches; i++) { const char *name = cxt->caches[i].name;