diff options
author | Wang Yong <yongw.kernel@gmail.com> | 2022-12-07 08:40:11 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2022-12-12 03:12:21 +0100 |
commit | c7cdf94e9cd7a03549e61b0f85949959191b8a10 (patch) | |
tree | 09f9f4c4247874468d83378fc482e12c0d87f802 | |
parent | kmsan: fix memcpy tests (diff) | |
download | linux-c7cdf94e9cd7a03549e61b0f85949959191b8a10.tar.xz linux-c7cdf94e9cd7a03549e61b0f85949959191b8a10.zip |
mm: fix typo in struct pglist_data code comment
change "stat" to "start".
Link: https://lkml.kernel.org/r/20221207074011.GA151242@cloud
Fixes: c959924b0dc5 ("memory tiering: adjust hot threshold automatically")
Signed-off-by: Wang Yong <yongw.kernel@gmail.com>
Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | include/linux/mmzone.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 5f74891556f3..128f3cde800c 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -1200,7 +1200,7 @@ typedef struct pglist_data { /* start time in ms of current promote threshold adjustment period */ unsigned int nbp_th_start; /* - * number of promote candidate pages at stat time of current promote + * number of promote candidate pages at start time of current promote * threshold adjustment period */ unsigned long nbp_th_nr_cand; |