[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221027160424.3489-1-claudiajkang@gmail.com>
Date: Fri, 28 Oct 2022 01:04:24 +0900
From: Juhee Kang <claudiajkang@...il.com>
To: netdev@...r.kernel.org, simon.horman@...igine.com, kuba@...nel.org,
davem@...emloft.net, edumazet@...gle.com, pabeni@...hat.com,
pablo@...filter.org
Cc: skhan@...uxfoundation.org, Juhee Kang <claudiajkang@...il.com>
Subject: [PATCH net-next v3] net: remove unusged netdev_unregistering()
Currently, use dev->reg_state == NETREG_UNREGISTERING to check the status
which is NETREG_UNREGISTERING, rather than using netdev_unregistering.
Also, A helper function which is netdev_unregistering on nedevice.h is no
longer used. Thus, netdev_unregistering removes from netdevice.h.
Signed-off-by: Juhee Kang <claudiajkang@...il.com>
---
v3:
- v2 link : https://lore.kernel.org/netdev/20220928161740.1267-1-claudiajkang@gmail.com/
- Apply review. Write commit message more specific.
v2:
- v1 link : https://lore.kernel.org/netdev/20220923160937.1912-1-claudiajkang@gmail.com/
- Apply review. Remove netdev_unregistering().
v1:
- Replace open code which is dev->reg_state == NETREG_UNREGISTERING to
netdev_unregistering() helper function.
include/linux/netdevice.h | 5 -----
1 file changed, 5 deletions(-)
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index eddf8ee270e7..99e58b773266 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -5101,11 +5101,6 @@ static inline const char *netdev_name(const struct net_device *dev)
return dev->name;
}
-static inline bool netdev_unregistering(const struct net_device *dev)
-{
- return dev->reg_state == NETREG_UNREGISTERING;
-}
-
static inline const char *netdev_reg_state(const struct net_device *dev)
{
switch (dev->reg_state) {
--
2.34.1
Powered by blists - more mailing lists