Commit 00151afc authored by Kent Russell's avatar Kent Russell Committed by Alex Deucher

drm/powerplay: Ratelimit PP_ASSERT warnings

In certain situations the message could be reported dozens-to-hundreds of
times, based on how often the function is called.
E.g. If MCLK DPM, any calls to get/set MCLK will result in a failure
message, potentially flooding dmesg. Ratelimit the warnings to avoid
this flood.
Signed-off-by: default avatarKent Russell <kent.russell@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 79275af6
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
#define PP_ASSERT_WITH_CODE(cond, msg, code) \ #define PP_ASSERT_WITH_CODE(cond, msg, code) \
do { \ do { \
if (!(cond)) { \ if (!(cond)) { \
pr_warn("%s\n", msg); \ pr_warn_ratelimited("%s\n", msg); \
code; \ code; \
} \ } \
} while (0) } while (0)
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
#define PP_ASSERT(cond, msg) \ #define PP_ASSERT(cond, msg) \
do { \ do { \
if (!(cond)) { \ if (!(cond)) { \
pr_warn("%s\n", msg); \ pr_warn_ratelimited("%s\n", msg); \
} \ } \
} while (0) } while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment