* [PATCH] drm: Reduce verbosity level for drm_core_init() debug message
@ 2016-12-29 13:37 Chris Wilson
2016-12-29 14:23 ` ✓ Fi.CI.BAT: success for " Patchwork
2016-12-30 11:17 ` [PATCH] " Daniel Vetter
0 siblings, 2 replies; 3+ messages in thread
From: Chris Wilson @ 2016-12-29 13:37 UTC (permalink / raw)
To: dri-devel; +Cc: intel-gfx
Currently at the end of drm_core_init() we print
[ 0.735185] [drm] Initialized
which does not provide any user information and is only a breadcrumb for
developers, so reduce it from info to debug.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
drivers/gpu/drm/drm_drv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index 2b75ce65d586..25783b99b651 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -929,7 +929,7 @@ static int __init drm_core_init(void)
if (ret < 0)
goto error;
- DRM_INFO("Initialized\n");
+ DRM_DEBUG("Initialized\n");
return 0;
error:
--
2.11.0
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* ✓ Fi.CI.BAT: success for drm: Reduce verbosity level for drm_core_init() debug message
2016-12-29 13:37 [PATCH] drm: Reduce verbosity level for drm_core_init() debug message Chris Wilson
@ 2016-12-29 14:23 ` Patchwork
2016-12-30 11:17 ` [PATCH] " Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2016-12-29 14:23 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
== Series Details ==
Series: drm: Reduce verbosity level for drm_core_init() debug message
URL : https://patchwork.freedesktop.org/series/17269/
State : success
== Summary ==
Series 17269v1 drm: Reduce verbosity level for drm_core_init() debug message
https://patchwork.freedesktop.org/api/1.0/series/17269/revisions/1/mbox/
Test pm_rpm:
Subgroup basic-pci-d3-state:
incomplete -> PASS (fi-byt-n2820)
fi-bdw-5557u total:246 pass:232 dwarn:0 dfail:0 fail:0 skip:14
fi-bsw-n3050 total:246 pass:207 dwarn:0 dfail:0 fail:0 skip:39
fi-bxt-j4205 total:246 pass:224 dwarn:0 dfail:0 fail:0 skip:22
fi-bxt-t5700 total:82 pass:69 dwarn:0 dfail:0 fail:0 skip:12
fi-byt-j1900 total:246 pass:219 dwarn:0 dfail:0 fail:0 skip:27
fi-byt-n2820 total:246 pass:215 dwarn:0 dfail:0 fail:0 skip:31
fi-hsw-4770 total:246 pass:227 dwarn:0 dfail:0 fail:0 skip:19
fi-hsw-4770r total:246 pass:227 dwarn:0 dfail:0 fail:0 skip:19
fi-ivb-3520m total:246 pass:225 dwarn:0 dfail:0 fail:0 skip:21
fi-ivb-3770 total:246 pass:225 dwarn:0 dfail:0 fail:0 skip:21
fi-kbl-7500u total:246 pass:225 dwarn:0 dfail:0 fail:0 skip:21
fi-skl-6260u total:246 pass:233 dwarn:0 dfail:0 fail:0 skip:13
fi-skl-6700hq total:246 pass:226 dwarn:0 dfail:0 fail:0 skip:20
fi-skl-6700k total:246 pass:222 dwarn:3 dfail:0 fail:0 skip:21
fi-skl-6770hq total:246 pass:233 dwarn:0 dfail:0 fail:0 skip:13
fi-snb-2520m total:246 pass:215 dwarn:0 dfail:0 fail:0 skip:31
fi-snb-2600 total:246 pass:214 dwarn:0 dfail:0 fail:0 skip:32
584adc8f6687d7f6832ce060c3f6022282119f18 drm-tip: 2016y-12m-28d-13h-55m-14s UTC integration manifest
1c5500d drm: Reduce verbosity level for drm_core_init() debug message
== Logs ==
For more details see: https://intel-gfx-ci.01.org/CI/Patchwork_3402/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm: Reduce verbosity level for drm_core_init() debug message
2016-12-29 13:37 [PATCH] drm: Reduce verbosity level for drm_core_init() debug message Chris Wilson
2016-12-29 14:23 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2016-12-30 11:17 ` Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Vetter @ 2016-12-30 11:17 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx, dri-devel
On Thu, Dec 29, 2016 at 01:37:29PM +0000, Chris Wilson wrote:
> Currently at the end of drm_core_init() we print
>
> [ 0.735185] [drm] Initialized
>
> which does not provide any user information and is only a breadcrumb for
> developers, so reduce it from info to debug.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Applied to drm-misc, thanks.
-Daniel
> ---
> drivers/gpu/drm/drm_drv.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
> index 2b75ce65d586..25783b99b651 100644
> --- a/drivers/gpu/drm/drm_drv.c
> +++ b/drivers/gpu/drm/drm_drv.c
> @@ -929,7 +929,7 @@ static int __init drm_core_init(void)
> if (ret < 0)
> goto error;
>
> - DRM_INFO("Initialized\n");
> + DRM_DEBUG("Initialized\n");
> return 0;
>
> error:
> --
> 2.11.0
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-12-30 11:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-29 13:37 [PATCH] drm: Reduce verbosity level for drm_core_init() debug message Chris Wilson
2016-12-29 14:23 ` ✓ Fi.CI.BAT: success for " Patchwork
2016-12-30 11:17 ` [PATCH] " Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox