diff options
author | Michal Hocko <mhocko@suse.com> | 2017-11-15 20:39:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-15 21:21:07 -0500 |
commit | 0205f75571e3a70c35f0dd5e608773cce97d9dbb (patch) | |
tree | 165da7db9ac71e5340d08f6534663e16886a2424 | |
parent | c50842c8e1cddcdb69d3ece4f4df005a0e6c5ceb (diff) |
mm: simplify nodemask printing
alloc_warn() and dump_header() have to explicitly handle NULL nodemask
which forces both paths to use pr_cont. We can do better. printk
already handles NULL pointers properly so all we need is to teach
nodemask_pr_args to handle NULL nodemask carefully. This allows
simplification of both alloc_warn() and dump_header() and gets rid of
pr_cont altogether.
This patch has been motivated by patch from Joe Perches
http://lkml.kernel.org/r/b31236dfe3fc924054fd7842bde678e71d193638.1509991345.git.joe@perches.com
[akpm@linux-foundation.org: fix tile warning, per Arnd]
Link: http://lkml.kernel.org/r/20171109100531.3cn2hcqnuj7mjaju@dhcp22.suse.cz
Signed-off-by: Michal Hocko <mhocko@suse.com>
Acked-by: Joe Perches <joe@perches.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/nodemask.h | 4 | ||||
-rw-r--r-- | mm/oom_kill.c | 12 | ||||
-rw-r--r-- | mm/page_alloc.c | 12 |
3 files changed, 10 insertions, 18 deletions
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index de1c50b93c61..15cab3967d6d 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h | |||
@@ -104,7 +104,9 @@ extern nodemask_t _unused_nodemask_arg_; | |||
104 | * | 104 | * |
105 | * Can be used to provide arguments for '%*pb[l]' when printing a nodemask. | 105 | * Can be used to provide arguments for '%*pb[l]' when printing a nodemask. |
106 | */ | 106 | */ |
107 | #define nodemask_pr_args(maskp) MAX_NUMNODES, (maskp)->bits | 107 | #define nodemask_pr_args(maskp) \ |
108 | ((maskp) != NULL) ? MAX_NUMNODES : 0, \ | ||
109 | ((maskp) != NULL) ? (maskp)->bits : NULL | ||
108 | 110 | ||
109 | /* | 111 | /* |
110 | * The inline keyword gives the compiler room to decide to inline, or | 112 | * The inline keyword gives the compiler room to decide to inline, or |
diff --git a/mm/oom_kill.c b/mm/oom_kill.c index a501a0a1f0f8..c86fbd1b590e 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c | |||
@@ -426,14 +426,10 @@ static void dump_tasks(struct mem_cgroup *memcg, const nodemask_t *nodemask) | |||
426 | 426 | ||
427 | static void dump_header(struct oom_control *oc, struct task_struct *p) | 427 | static void dump_header(struct oom_control *oc, struct task_struct *p) |
428 | { | 428 | { |
429 | pr_warn("%s invoked oom-killer: gfp_mask=%#x(%pGg), nodemask=", | 429 | pr_warn("%s invoked oom-killer: gfp_mask=%#x(%pGg), nodemask=%*pbl, order=%d, oom_score_adj=%hd\n", |
430 | current->comm, oc->gfp_mask, &oc->gfp_mask); | 430 | current->comm, oc->gfp_mask, &oc->gfp_mask, |
431 | if (oc->nodemask) | 431 | nodemask_pr_args(oc->nodemask), oc->order, |
432 | pr_cont("%*pbl", nodemask_pr_args(oc->nodemask)); | 432 | current->signal->oom_score_adj); |
433 | else | ||
434 | pr_cont("(null)"); | ||
435 | pr_cont(", order=%d, oom_score_adj=%hd\n", | ||
436 | oc->order, current->signal->oom_score_adj); | ||
437 | if (!IS_ENABLED(CONFIG_COMPACTION) && oc->order) | 433 | if (!IS_ENABLED(CONFIG_COMPACTION) && oc->order) |
438 | pr_warn("COMPACTION is disabled!!!\n"); | 434 | pr_warn("COMPACTION is disabled!!!\n"); |
439 | 435 | ||
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 8f2b9ad2e23f..7a199767dcee 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -3279,20 +3279,14 @@ void warn_alloc(gfp_t gfp_mask, nodemask_t *nodemask, const char *fmt, ...) | |||
3279 | if ((gfp_mask & __GFP_NOWARN) || !__ratelimit(&nopage_rs)) | 3279 | if ((gfp_mask & __GFP_NOWARN) || !__ratelimit(&nopage_rs)) |
3280 | return; | 3280 | return; |
3281 | 3281 | ||
3282 | pr_warn("%s: ", current->comm); | ||
3283 | |||
3284 | va_start(args, fmt); | 3282 | va_start(args, fmt); |
3285 | vaf.fmt = fmt; | 3283 | vaf.fmt = fmt; |
3286 | vaf.va = &args; | 3284 | vaf.va = &args; |
3287 | pr_cont("%pV", &vaf); | 3285 | pr_warn("%s: %pV, mode:%#x(%pGg), nodemask=%*pbl\n", |
3286 | current->comm, &vaf, gfp_mask, &gfp_mask, | ||
3287 | nodemask_pr_args(nodemask)); | ||
3288 | va_end(args); | 3288 | va_end(args); |
3289 | 3289 | ||
3290 | pr_cont(", mode:%#x(%pGg), nodemask=", gfp_mask, &gfp_mask); | ||
3291 | if (nodemask) | ||
3292 | pr_cont("%*pbl\n", nodemask_pr_args(nodemask)); | ||
3293 | else | ||
3294 | pr_cont("(null)\n"); | ||
3295 | |||
3296 | cpuset_print_current_mems_allowed(); | 3290 | cpuset_print_current_mems_allowed(); |
3297 | 3291 | ||
3298 | dump_stack(); | 3292 | dump_stack(); |