From: Karel Zak Date: Tue, 12 Apr 2022 08:57:33 +0000 (+0200) Subject: lscpu: fix incomplete column description X-Git-Tag: v2.39-rc1~719 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b956bc8662645b7cc6d43021ae33bd091c34d9e1;p=thirdparty%2Futil-linux.git lscpu: fix incomplete column description Fixes: https://github.com/util-linux/util-linux/issues/1649 Signed-off-by: Karel Zak --- diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 32f989e381..018ab60149 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -167,7 +167,7 @@ static struct lscpu_coldesc coldescs_cache[] = [COL_CACHE_WAYS] = { "WAYS", N_("ways of associativity"), SCOLS_FL_RIGHT, 0, SCOLS_JSON_NUMBER }, [COL_CACHE_ALLOCPOL] = { "ALLOC-POLICY", N_("allocation policy") }, [COL_CACHE_WRITEPOL] = { "WRITE-POLICY", N_("write policy") }, - [COL_CACHE_PHYLINE] = { "PHY-LINE", N_("number of physical cache line per cache t"), SCOLS_FL_RIGHT, 0, SCOLS_JSON_NUMBER }, + [COL_CACHE_PHYLINE] = { "PHY-LINE", N_("number of physical cache line per cache tag"), SCOLS_FL_RIGHT, 0, SCOLS_JSON_NUMBER }, [COL_CACHE_SETS] = { "SETS", N_("number of sets in the cache; set lines has the same cache index"), SCOLS_FL_RIGHT, 0, SCOLS_JSON_NUMBER }, [COL_CACHE_COHERENCYSIZE] = { "COHERENCY-SIZE", N_("minimum amount of data in bytes transferred from memory to cache"), SCOLS_FL_RIGHT, 0, SCOLS_JSON_NUMBER } };