]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: sysfs: Fix weird usage of class's namespace relevant fields
authorZijun Hu <quic_zijuhu@quicinc.com>
Wed, 4 Sep 2024 23:35:38 +0000 (07:35 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Sep 2024 09:30:52 +0000 (10:30 +0100)
Device class has two namespace relevant fields which are associated by
the following usage:

struct class {
...
const struct kobj_ns_type_operations *ns_type;
const void *(*namespace)(const struct device *dev);
...
}
if (dev->class && dev->class->ns_type)
dev->class->namespace(dev);

The usage looks weird since it checks @ns_type but calls namespace()
it is found for all existing class definitions that the other filed is
also assigned once one is assigned in current kernel tree, so fix this
weird usage by checking @namespace to call namespace().

Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/net-sysfs.c

index 0648dbf0e2340aa89485a887185596f2fb284f91..05cf5347f25e89f095c346c0503cfd8ab4766615 100644 (file)
@@ -1060,7 +1060,7 @@ static const void *rx_queue_namespace(const struct kobject *kobj)
        struct device *dev = &queue->dev->dev;
        const void *ns = NULL;
 
-       if (dev->class && dev->class->ns_type)
+       if (dev->class && dev->class->namespace)
                ns = dev->class->namespace(dev);
 
        return ns;
@@ -1744,7 +1744,7 @@ static const void *netdev_queue_namespace(const struct kobject *kobj)
        struct device *dev = &queue->dev->dev;
        const void *ns = NULL;
 
-       if (dev->class && dev->class->ns_type)
+       if (dev->class && dev->class->namespace)
                ns = dev->class->namespace(dev);
 
        return ns;