From: Alain Volmat <avolmat@me.com>
To: Deepak R Varma <drv@mailo.com>
Cc: Praveen Kumar <kumarpraveen@linux.microsoft.com>,
Saurabh Singh Sengar <ssengar@microsoft.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Alain Volmat <alain.volmat@foss.st.com>,
Alain Volmat <avolmat@me.com>
Subject: Re: [PATCH RESEND] drm/sti: Avoid full proxy f_ops for sti debug attributes
Date: Sat, 10 Jun 2023 20:57:54 +0000 [thread overview]
Message-ID: <ZITj0iEGWv4Oexoo@macminiubuntu> (raw)
In-Reply-To: <Y/+uXCDxxA+3AzMq@ubun2204.myguest.virtualbox.org>
Hi Deepak,
thank you for the patch and sorry for the delay.
Acked-by: Alain Volmat <avolmat@me.com>
Alain
On Thu, Mar 02, 2023 at 01:28:20AM +0530, Deepak R Varma wrote:
> Using DEFINE_SIMPLE_ATTRIBUTE macro with the debugfs_create_file()
> function adds the overhead of introducing a proxy file operation
> functions to wrap the original read/write inside file removal protection
> functions. This adds significant overhead in terms of introducing and
> managing the proxy factory file operations structure and function
> wrapping at runtime.
> As a replacement, a combination of DEFINE_DEBUGFS_ATTRIBUTE macro paired
> with debugfs_create_file_unsafe() is suggested to be used instead. The
> DEFINE_DEBUGFS_ATTRIBUTE utilises debugfs_file_get() and
> debugfs_file_put() wrappers to protect the original read and write
> function calls for the debug attributes. There is no need for any
> runtime proxy file operations to be managed by the debugfs core.
> Following coccicheck make command helped identify this change:
>
> make coccicheck M=drivers/gpu/drm/i915/ MODE=patch COCCI=./scripts/coccinelle/api/debugfs/debugfs_simple_attr.cocci
>
> Signed-off-by: Deepak R Varma <drv@mailo.com>
> ---
> Note: Change cross compile tested using stm32_defconfig for arm
> Resending patch for review and feedback. Initially sent on Jan 11 2023
>
>
>
> drivers/gpu/drm/sti/sti_drv.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/sti/sti_drv.c b/drivers/gpu/drm/sti/sti_drv.c
> index ef6a4e63198f..c9be82043638 100644
> --- a/drivers/gpu/drm/sti/sti_drv.c
> +++ b/drivers/gpu/drm/sti/sti_drv.c
> @@ -67,8 +67,8 @@ static int sti_drm_fps_set(void *data, u64 val)
> return 0;
> }
>
> -DEFINE_SIMPLE_ATTRIBUTE(sti_drm_fps_fops,
> - sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
> +DEFINE_DEBUGFS_ATTRIBUTE(sti_drm_fps_fops,
> + sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
>
> static int sti_drm_fps_dbg_show(struct seq_file *s, void *data)
> {
> @@ -97,8 +97,8 @@ static void sti_drm_dbg_init(struct drm_minor *minor)
> ARRAY_SIZE(sti_drm_dbg_list),
> minor->debugfs_root, minor);
>
> - debugfs_create_file("fps_show", S_IRUGO | S_IWUSR, minor->debugfs_root,
> - minor->dev, &sti_drm_fps_fops);
> + debugfs_create_file_unsafe("fps_show", S_IRUGO | S_IWUSR, minor->debugfs_root,
> + minor->dev, &sti_drm_fps_fops);
>
> DRM_INFO("%s: debugfs installed\n", DRIVER_NAME);
> }
> --
> 2.34.1
>
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Alain Volmat <avolmat@me.com>
To: Deepak R Varma <drv@mailo.com>
Cc: Alain Volmat <alain.volmat@foss.st.com>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Praveen Kumar <kumarpraveen@linux.microsoft.com>,
Saurabh Singh Sengar <ssengar@microsoft.com>,
Alain Volmat <avolmat@me.com>
Subject: Re: [PATCH RESEND] drm/sti: Avoid full proxy f_ops for sti debug attributes
Date: Sat, 10 Jun 2023 20:57:54 +0000 [thread overview]
Message-ID: <ZITj0iEGWv4Oexoo@macminiubuntu> (raw)
In-Reply-To: <Y/+uXCDxxA+3AzMq@ubun2204.myguest.virtualbox.org>
Hi Deepak,
thank you for the patch and sorry for the delay.
Acked-by: Alain Volmat <avolmat@me.com>
Alain
On Thu, Mar 02, 2023 at 01:28:20AM +0530, Deepak R Varma wrote:
> Using DEFINE_SIMPLE_ATTRIBUTE macro with the debugfs_create_file()
> function adds the overhead of introducing a proxy file operation
> functions to wrap the original read/write inside file removal protection
> functions. This adds significant overhead in terms of introducing and
> managing the proxy factory file operations structure and function
> wrapping at runtime.
> As a replacement, a combination of DEFINE_DEBUGFS_ATTRIBUTE macro paired
> with debugfs_create_file_unsafe() is suggested to be used instead. The
> DEFINE_DEBUGFS_ATTRIBUTE utilises debugfs_file_get() and
> debugfs_file_put() wrappers to protect the original read and write
> function calls for the debug attributes. There is no need for any
> runtime proxy file operations to be managed by the debugfs core.
> Following coccicheck make command helped identify this change:
>
> make coccicheck M=drivers/gpu/drm/i915/ MODE=patch COCCI=./scripts/coccinelle/api/debugfs/debugfs_simple_attr.cocci
>
> Signed-off-by: Deepak R Varma <drv@mailo.com>
> ---
> Note: Change cross compile tested using stm32_defconfig for arm
> Resending patch for review and feedback. Initially sent on Jan 11 2023
>
>
>
> drivers/gpu/drm/sti/sti_drv.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/sti/sti_drv.c b/drivers/gpu/drm/sti/sti_drv.c
> index ef6a4e63198f..c9be82043638 100644
> --- a/drivers/gpu/drm/sti/sti_drv.c
> +++ b/drivers/gpu/drm/sti/sti_drv.c
> @@ -67,8 +67,8 @@ static int sti_drm_fps_set(void *data, u64 val)
> return 0;
> }
>
> -DEFINE_SIMPLE_ATTRIBUTE(sti_drm_fps_fops,
> - sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
> +DEFINE_DEBUGFS_ATTRIBUTE(sti_drm_fps_fops,
> + sti_drm_fps_get, sti_drm_fps_set, "%llu\n");
>
> static int sti_drm_fps_dbg_show(struct seq_file *s, void *data)
> {
> @@ -97,8 +97,8 @@ static void sti_drm_dbg_init(struct drm_minor *minor)
> ARRAY_SIZE(sti_drm_dbg_list),
> minor->debugfs_root, minor);
>
> - debugfs_create_file("fps_show", S_IRUGO | S_IWUSR, minor->debugfs_root,
> - minor->dev, &sti_drm_fps_fops);
> + debugfs_create_file_unsafe("fps_show", S_IRUGO | S_IWUSR, minor->debugfs_root,
> + minor->dev, &sti_drm_fps_fops);
>
> DRM_INFO("%s: debugfs installed\n", DRIVER_NAME);
> }
> --
> 2.34.1
>
>
>
next prev parent reply other threads:[~2023-06-10 21:04 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-01 19:58 [PATCH RESEND] drm/sti: Avoid full proxy f_ops for sti debug attributes Deepak R Varma
2023-03-01 19:58 ` Deepak R Varma
2023-06-10 20:57 ` Alain Volmat [this message]
2023-06-10 20:57 ` Alain Volmat
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=ZITj0iEGWv4Oexoo@macminiubuntu \
--to=avolmat@me.com \
--cc=alain.volmat@foss.st.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=drv@mailo.com \
--cc=kumarpraveen@linux.microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=ssengar@microsoft.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.