[PATCH] xen: pcpu: remove unnecessary __ref annotation

Sergio Miguéns Iglesias posted 1 patch 11 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
drivers/xen/pcpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] xen: pcpu: remove unnecessary __ref annotation
Posted by Sergio Miguéns Iglesias 11 months ago
The __ref annotation has been there since the beginning of time, but no
calls to __init functions exist inside it, and the compilation of the
Xen driver does not output any warnings when removed.

Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Cc: xen-devel@lists.xenproject.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Sergio Miguéns Iglesias <sergio@lony.xyz>

---
 drivers/xen/pcpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/xen/pcpu.c b/drivers/xen/pcpu.c
index c63f317e3df3..093ad4a08672 100644
--- a/drivers/xen/pcpu.c
+++ b/drivers/xen/pcpu.c
@@ -105,7 +105,7 @@ static ssize_t online_show(struct device *dev,
 	return sprintf(buf, "%u\n", !!(cpu->flags & XEN_PCPU_FLAGS_ONLINE));
 }
 
-static ssize_t __ref online_store(struct device *dev,
+static ssize_t online_store(struct device *dev,
 				  struct device_attribute *attr,
 				  const char *buf, size_t count)
 {
-- 
2.47.0

Re: [PATCH] xen: pcpu: remove unnecessary __ref annotation
Posted by Juergen Gross 11 months ago
On 02.12.24 09:59, Sergio Miguéns Iglesias wrote:
> The __ref annotation has been there since the beginning of time, but no
> calls to __init functions exist inside it, and the compilation of the
> Xen driver does not output any warnings when removed.

The __ref annotation was added with commit 6c847402e1c6, but I think the
need for it went away some time later.

> 
> Cc: Juergen Gross <jgross@suse.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> Cc: xen-devel@lists.xenproject.org
> Cc: linux-kernel@vger.kernel.org
> Signed-off-by: Sergio Miguéns Iglesias <sergio@lony.xyz>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen