* [PATCH net-next] ice: use list_for_each_entry() helper
@ 2023-08-02 9:07 Yang Yingliang
2023-08-02 16:49 ` Simon Horman
2023-08-11 6:50 ` [Intel-wired-lan] " Buvaneswaran, Sujai
0 siblings, 2 replies; 3+ messages in thread
From: Yang Yingliang @ 2023-08-02 9:07 UTC (permalink / raw)
To: intel-wired-lan, netdev
Cc: jesse.brandeburg, anthony.l.nguyen, davem, edumazet, kuba, pabeni,
yangyingliang
Convert list_for_each() to list_for_each_entry() where applicable.
No functional changed.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
drivers/net/ethernet/intel/ice/ice_lag.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/net/ethernet/intel/ice/ice_lag.c b/drivers/net/ethernet/intel/ice/ice_lag.c
index 36b7044717e8..a68974c1aa38 100644
--- a/drivers/net/ethernet/intel/ice/ice_lag.c
+++ b/drivers/net/ethernet/intel/ice/ice_lag.c
@@ -129,11 +129,9 @@ ice_lag_find_hw_by_lport(struct ice_lag *lag, u8 lport)
struct ice_lag_netdev_list *entry;
struct net_device *tmp_netdev;
struct ice_netdev_priv *np;
- struct list_head *tmp;
struct ice_hw *hw;
- list_for_each(tmp, lag->netdev_head) {
- entry = list_entry(tmp, struct ice_lag_netdev_list, node);
+ list_for_each_entry(entry, lag->netdev_head, node) {
tmp_netdev = entry->netdev;
if (!tmp_netdev || !netif_is_ice(tmp_netdev))
continue;
@@ -1535,11 +1533,9 @@ static void ice_lag_disable_sriov_bond(struct ice_lag *lag)
struct ice_lag_netdev_list *entry;
struct ice_netdev_priv *np;
struct net_device *netdev;
- struct list_head *tmp;
struct ice_pf *pf;
- list_for_each(tmp, lag->netdev_head) {
- entry = list_entry(tmp, struct ice_lag_netdev_list, node);
+ list_for_each_entry(entry, lag->netdev_head, node) {
netdev = entry->netdev;
np = netdev_priv(netdev);
pf = np->vsi->back;
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] ice: use list_for_each_entry() helper
2023-08-02 9:07 [PATCH net-next] ice: use list_for_each_entry() helper Yang Yingliang
@ 2023-08-02 16:49 ` Simon Horman
2023-08-11 6:50 ` [Intel-wired-lan] " Buvaneswaran, Sujai
1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2023-08-02 16:49 UTC (permalink / raw)
To: Yang Yingliang
Cc: intel-wired-lan, netdev, jesse.brandeburg, anthony.l.nguyen,
davem, edumazet, kuba, pabeni
On Wed, Aug 02, 2023 at 05:07:39PM +0800, Yang Yingliang wrote:
> Convert list_for_each() to list_for_each_entry() where applicable.
> No functional changed.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [Intel-wired-lan] [PATCH net-next] ice: use list_for_each_entry() helper
2023-08-02 9:07 [PATCH net-next] ice: use list_for_each_entry() helper Yang Yingliang
2023-08-02 16:49 ` Simon Horman
@ 2023-08-11 6:50 ` Buvaneswaran, Sujai
1 sibling, 0 replies; 3+ messages in thread
From: Buvaneswaran, Sujai @ 2023-08-11 6:50 UTC (permalink / raw)
To: Yang Yingliang, intel-wired-lan@lists.osuosl.org,
netdev@vger.kernel.org
Cc: Brandeburg, Jesse, edumazet@google.com, Nguyen, Anthony L,
kuba@kernel.org, pabeni@redhat.com, davem@davemloft.net
> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of
> Yang Yingliang
> Sent: Wednesday, August 2, 2023 2:38 PM
> To: intel-wired-lan@lists.osuosl.org; netdev@vger.kernel.org
> Cc: Brandeburg, Jesse <jesse.brandeburg@intel.com>;
> edumazet@google.com; Nguyen, Anthony L <anthony.l.nguyen@intel.com>;
> yangyingliang@huawei.com; kuba@kernel.org; pabeni@redhat.com;
> davem@davemloft.net
> Subject: [Intel-wired-lan] [PATCH net-next] ice: use list_for_each_entry()
> helper
>
> Convert list_for_each() to list_for_each_entry() where applicable.
> No functional changed.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
> drivers/net/ethernet/intel/ice/ice_lag.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
Tested-by: Sujai Buvaneswaran <sujai.buvaneswaran@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-08-11 6:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-02 9:07 [PATCH net-next] ice: use list_for_each_entry() helper Yang Yingliang
2023-08-02 16:49 ` Simon Horman
2023-08-11 6:50 ` [Intel-wired-lan] " Buvaneswaran, Sujai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).