UPSTREAM: mm/damon: fix a few spelling mistakes in comments and a pr_debug message

There are a few spelling mistakes in the code.  Fix these.

Link: https://lkml.kernel.org/r/20211028184157.614544-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

(cherry picked from commit 0107865541961ee128149c9873996d32143a74d0)

Bug: 228223814
Signed-off-by: zhijun wan <wanzhijun@oppo.com>
Change-Id: I09c9421b1abeed6c002cf5fef07d229cf0f22ebd
This commit is contained in:
Colin Ian King 2021-11-05 13:48:24 -07:00 committed by Suren Baghdasaryan
parent c91a782b6f
commit db9b97b547
3 changed files with 3 additions and 3 deletions

View File

@ -968,7 +968,7 @@ static unsigned long damos_wmark_wait_us(struct damos *scheme)
/* higher than high watermark or lower than low watermark */ /* higher than high watermark or lower than low watermark */
if (metric > scheme->wmarks.high || scheme->wmarks.low > metric) { if (metric > scheme->wmarks.high || scheme->wmarks.low > metric) {
if (scheme->wmarks.activated) if (scheme->wmarks.activated)
pr_debug("inactivate a scheme (%d) for %s wmark\n", pr_debug("deactivate a scheme (%d) for %s wmark\n",
scheme->action, scheme->action,
metric > scheme->wmarks.high ? metric > scheme->wmarks.high ?
"high" : "low"); "high" : "low");

View File

@ -145,7 +145,7 @@ static void damon_dbgfs_test_set_init_regions(struct kunit *test)
KUNIT_EXPECT_STREQ(test, (char *)buf, expect); KUNIT_EXPECT_STREQ(test, (char *)buf, expect);
} }
/* Put invlid inputs and check the return error code */ /* Put invalid inputs and check the return error code */
for (i = 0; i < ARRAY_SIZE(invalid_inputs); i++) { for (i = 0; i < ARRAY_SIZE(invalid_inputs); i++) {
input = invalid_inputs[i]; input = invalid_inputs[i];
pr_info("input: %s\n", input); pr_info("input: %s\n", input);

View File

@ -233,7 +233,7 @@ static void damon_test_apply_three_regions3(struct kunit *test)
* and 70-100) has totally freed and mapped to different area (30-32 and * and 70-100) has totally freed and mapped to different area (30-32 and
* 65-68). The target regions which were in the old second and third big * 65-68). The target regions which were in the old second and third big
* regions should now be removed and new target regions covering the new second * regions should now be removed and new target regions covering the new second
* and third big regions should be crated. * and third big regions should be created.
*/ */
static void damon_test_apply_three_regions4(struct kunit *test) static void damon_test_apply_three_regions4(struct kunit *test)
{ {