From: Daniel Vetter <daniel@ffwll.ch>
To: Harry Wentland <harry.wentland@amd.com>
Cc: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com>,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm: Print pid in drm log
Date: Mon, 21 Dec 2015 09:59:04 +0100 [thread overview]
Message-ID: <20151221085904.GE30437@phenom.ffwll.local> (raw)
In-Reply-To: <1450476705-1487-1-git-send-email-harry.wentland@amd.com>
On Fri, Dec 18, 2015 at 05:11:45PM -0500, Harry Wentland wrote:
> From: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com>
>
> Add task ids to all DRM prints so it is easier to resolve
> concurency issues and understand the logic.
>
> Signed-off-by: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com>
Not sure pid is all that useful, so next patch will add comm and then
more. I think it'd be better to instead have a Kconfig option to convert
drm debug noise over to dynamic printk subsystem, iirc that has tons of
features and hopefully should cover this. If it's doesn't then
trace_printk will give you very nice profiles (again with a compile
option).
Cheers, Daniel
> ---
> drivers/gpu/drm/drm_drv.c | 16 +++++++++++++---
> include/drm/drmP.h | 6 ++++--
> 2 files changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
> index 7dd6728dd092..7b17a9ae0b07 100644
> --- a/drivers/gpu/drm/drm_drv.c
> +++ b/drivers/gpu/drm/drm_drv.c
> @@ -55,6 +55,16 @@ static struct idr drm_minors_idr;
>
> static struct dentry *drm_debugfs_root;
>
> +pid_t get_my_pid(void) {
> +
> + if (!in_interrupt())
> + return current->pid;
> +
> + return 0;
> +}
> +
> +EXPORT_SYMBOL(get_my_pid);
> +
> void drm_err(const char *format, ...)
> {
> struct va_format vaf;
> @@ -65,8 +75,8 @@ void drm_err(const char *format, ...)
> vaf.fmt = format;
> vaf.va = &args;
>
> - printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
> - __builtin_return_address(0), &vaf);
> + printk(KERN_ERR "[%u][" DRM_NAME ":%ps] *ERROR* %pV",
> + get_my_pid(),__builtin_return_address(0), &vaf);
>
> va_end(args);
> }
> @@ -81,7 +91,7 @@ void drm_ut_debug_printk(const char *function_name, const char *format, ...)
> vaf.fmt = format;
> vaf.va = &args;
>
> - printk(KERN_DEBUG "[" DRM_NAME ":%s] %pV", function_name, &vaf);
> + printk(KERN_DEBUG "[%u][" DRM_NAME ":%s] %pV",get_my_pid(), function_name, &vaf);
>
> va_end(args);
> }
> diff --git a/include/drm/drmP.h b/include/drm/drmP.h
> index 5531d7bbe851..4b17f890ca14 100644
> --- a/include/drm/drmP.h
> +++ b/include/drm/drmP.h
> @@ -183,11 +183,13 @@ void drm_err(const char *format, ...);
> drm_err(fmt, ##__VA_ARGS__); \
> })
>
> +pid_t get_my_pid(void);
> +
> #define DRM_INFO(fmt, ...) \
> - printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
> + printk(KERN_INFO "[%u][" DRM_NAME "] " fmt,get_my_pid(), ##__VA_ARGS__)
>
> #define DRM_INFO_ONCE(fmt, ...) \
> - printk_once(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
> + printk_once(KERN_INFO "[%u][" DRM_NAME "] " fmt,get_my_pid(), ##__VA_ARGS__)
>
> /**
> * Debug output.
> --
> 2.1.4
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
prev parent reply other threads:[~2015-12-21 8:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-18 22:11 [PATCH] drm: Print pid in drm log Harry Wentland
2015-12-21 8:59 ` Daniel Vetter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151221085904.GE30437@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=Andrey.Grodzovsky@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=harry.wentland@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox