Skip to content

Commit

Permalink
dma-debug: make things less spammy under memory pressure
Browse files Browse the repository at this point in the history
[ Upstream commit e19f8fa ]

Limit the error msg to avoid flooding the console.  If you have a lot of
threads hitting this at once, they could have already gotten passed the
dma_debug_disabled() check before they get to the point of allocation
failure, resulting in quite a lot of this error message spamming the
log.  Use pr_err_once() to limit that.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
robclark authored and gregkh committed Jun 22, 2022
1 parent 1b54c00 commit d7be05a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/dma/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ static void add_dma_entry(struct dma_debug_entry *entry)

rc = active_cacheline_insert(entry);
if (rc == -ENOMEM) {
pr_err("cacheline tracking ENOMEM, dma-debug disabled\n");
pr_err_once("cacheline tracking ENOMEM, dma-debug disabled\n");
global_disable = true;
}

Expand Down

0 comments on commit d7be05a

Please sign in to comment.