summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorRob Clark <robdclark@chromium.org>2022-06-01 07:51:16 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-22 14:21:55 +0200
commite4e166f10e7026681bbab3fa1eb2dd2a0914453d (patch)
tree002f008eab38f76469c906b479e051afd2ba1dae /kernel
parent09c5cdbc62d99fc6306a21b24b60eb11a3bd0963 (diff)
downloadlinux-stable-e4e166f10e7026681bbab3fa1eb2dd2a0914453d.tar.gz
linux-stable-e4e166f10e7026681bbab3fa1eb2dd2a0914453d.tar.bz2
linux-stable-e4e166f10e7026681bbab3fa1eb2dd2a0914453d.zip
dma-debug: make things less spammy under memory pressure
[ Upstream commit e19f8fa6ce1ca9b8b934ba7d2e8f34c95abc6e60 ] 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>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/dma/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/dma/debug.c b/kernel/dma/debug.c
index ac740630c79c..2caafd13f8aa 100644
--- a/kernel/dma/debug.c
+++ b/kernel/dma/debug.c
@@ -564,7 +564,7 @@ static void add_dma_entry(struct dma_debug_entry *entry, unsigned long attrs)
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;
} else if (rc == -EEXIST && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
err_printk(entry->dev, entry,