* [PATCH] video: fbdev: udlfb: drop log level for blanking
@ 2017-06-01 20:25 Mike Gerow
2017-06-01 20:38 ` Mike Gerow
2017-06-07 13:33 ` Bartlomiej Zolnierkiewicz
0 siblings, 2 replies; 3+ messages in thread
From: Mike Gerow @ 2017-06-01 20:25 UTC (permalink / raw)
To: linux-fbdev
[-- Attachment #1: Type: text/plain, Size: 1382 bytes --]
Log blanking that goes from FB_BLANK_UNBLANK to itself at debug. It turns
out Xorg likes to habitually unblank when already unblanked and this can
fill up logs over a long period of time.
Signed-off-by: Mike Gerow <gerow@google.com>
---
drivers/video/fbdev/udlfb.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/drivers/video/fbdev/udlfb.c b/drivers/video/fbdev/udlfb.c
index 6a3c353de7c3..611de916abcf 100644
--- a/drivers/video/fbdev/udlfb.c
+++ b/drivers/video/fbdev/udlfb.c
@@ -1105,8 +1105,17 @@ static int dlfb_ops_blank(int blank_mode, struct fb_info *info)
char *bufptr;
struct urb *urb;
- pr_info("/dev/fb%d FB_BLANK mode %d --> %d\n",
- info->node, dev->blank_mode, blank_mode);
+ /*
+ * Xorg likes to habitually unblank when already unblanked so log these
+ * kinds of events at debug.
+ */
+ if (dev->blank_mode == FB_BLANK_UNBLANK &&
+ blank_mode == FB_BLANK_UNBLANK)
+ pr_debug("/dev/fb%d FB_BLANK mode %d --> %d (FB_BLANK_UNBLANK --> FB_BLANK_UNBLANK)\n",
+ info->node, FB_BLANK_UNBLANK, FB_BLANK_UNBLANK);
+ else
+ pr_info("/dev/fb%d FB_BLANK mode %d --> %d\n",
+ info->node, dev->blank_mode, blank_mode);
if ((dev->blank_mode == FB_BLANK_POWERDOWN) &&
(blank_mode != FB_BLANK_POWERDOWN)) {
--
2.13.0.219.gdb65acc882-goog
--
Mike Gerow
gerow@google.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-06-07 13:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-01 20:25 [PATCH] video: fbdev: udlfb: drop log level for blanking Mike Gerow
2017-06-01 20:38 ` Mike Gerow
2017-06-07 13:33 ` Bartlomiej Zolnierkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).