[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <d1580513-6297-46b5-b4e0-c2063496b2ed@t-8ch.de>
Date: Fri, 13 Dec 2024 08:43:46 +0100
From: Thomas Weißschuh <linux@...ssschuh.net>
To: Armin Wolf <W_Armin@....de>
Cc: Michael Ellerman <mpe@...erman.id.au>,
Nicholas Piggin <npiggin@...il.com>, Christophe Leroy <christophe.leroy@...roup.eu>,
Naveen N Rao <naveen@...nel.org>, Madhavan Srinivasan <maddy@...ux.ibm.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>, "Rafael J. Wysocki" <rafael@...nel.org>,
Luis Chamberlain <mcgrof@...nel.org>, Petr Pavlu <petr.pavlu@...e.com>,
Sami Tolvanen <samitolvanen@...gle.com>, Daniel Gomez <da.gomez@...sung.com>,
Hans de Goede <hdegoede@...hat.com>, Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>,
Alexei Starovoitov <ast@...nel.org>, Daniel Borkmann <daniel@...earbox.net>,
Andrii Nakryiko <andrii@...nel.org>, Martin KaFai Lau <martin.lau@...ux.dev>,
Eduard Zingerman <eddyz87@...il.com>, Song Liu <song@...nel.org>,
Yonghong Song <yonghong.song@...ux.dev>, John Fastabend <john.fastabend@...il.com>,
KP Singh <kpsingh@...nel.org>, Stanislav Fomichev <sdf@...ichev.me>,
Hao Luo <haoluo@...gle.com>, Jiri Olsa <jolsa@...nel.org>, linuxppc-dev@...ts.ozlabs.org,
linux-kernel@...r.kernel.org, linux-modules@...r.kernel.org,
platform-driver-x86@...r.kernel.org, bpf@...r.kernel.org
Subject: Re: [PATCH 2/4] platform/x86: wmi-bmof: Switch to
sysfs_bin_attr_simple_read()
Hi Armin,
On 2024-12-13 01:21:37+0100, Armin Wolf wrote:
> Am 05.12.24 um 18:35 schrieb Thomas Weißschuh:
>
> > The generic function from the sysfs core can replace the custom one.
>
> Sorry for taking quite a bit to respond, i totally overlooked this patch.
>
> This patch is superseded by a patch of mine: https://lore.kernel.org/platform-driver-x86/20241206215650.2977-1-W_Armin@gmx.de/
>
> This reworks the binary attribute handling inside the driver to use the new .bin_size() callback. This allows the
> driver to have a static binary attribute which does not need a memory allocation.
>
> Because i think we cannot use sysfs_bin_attr_simple_read() anymore. So maybe you can just drop this patch?
Works for me, thanks!
Thomas
> > Signed-off-by: Thomas Weißschuh <linux@...ssschuh.net>
> > ---
> > drivers/platform/x86/wmi-bmof.c | 12 ++----------
> > 1 file changed, 2 insertions(+), 10 deletions(-)
> >
> > diff --git a/drivers/platform/x86/wmi-bmof.c b/drivers/platform/x86/wmi-bmof.c
> > index df6f0ae6e6c7904f97c125297a21166f56d0b1f0..e6c217d70086a2896dc70cf8ac1c27dafb501a95 100644
> > --- a/drivers/platform/x86/wmi-bmof.c
> > +++ b/drivers/platform/x86/wmi-bmof.c
> > @@ -25,15 +25,6 @@ struct bmof_priv {
> > struct bin_attribute bmof_bin_attr;
> > };
> >
> > -static ssize_t read_bmof(struct file *filp, struct kobject *kobj, struct bin_attribute *attr,
> > - char *buf, loff_t off, size_t count)
> > -{
> > - struct bmof_priv *priv = container_of(attr, struct bmof_priv, bmof_bin_attr);
> > -
> > - return memory_read_from_buffer(buf, count, &off, priv->bmofdata->buffer.pointer,
> > - priv->bmofdata->buffer.length);
> > -}
> > -
> > static int wmi_bmof_probe(struct wmi_device *wdev, const void *context)
> > {
> > struct bmof_priv *priv;
> > @@ -60,7 +51,8 @@ static int wmi_bmof_probe(struct wmi_device *wdev, const void *context)
> > sysfs_bin_attr_init(&priv->bmof_bin_attr);
> > priv->bmof_bin_attr.attr.name = "bmof";
> > priv->bmof_bin_attr.attr.mode = 0400;
> > - priv->bmof_bin_attr.read = read_bmof;
> > + priv->bmof_bin_attr.read_new = sysfs_bin_attr_simple_read;
> > + priv->bmof_bin_attr.private = priv->bmofdata->buffer.pointer;
> > priv->bmof_bin_attr.size = priv->bmofdata->buffer.length;
> >
> > ret = device_create_bin_file(&wdev->dev, &priv->bmof_bin_attr);
> >
Powered by blists - more mailing lists