Message ID | 20230417093412.12161-11-wojciech.drewek@intel.com (mailing list archive) |
---|---|
State | Awaiting Upstream |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | ice: switchdev bridge offload | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Clearly marked for net-next |
netdev/apply | fail | Patch does not apply to net-next |
From: Wojciech Drewek <wojciech.drewek@intel.com> Date: Mon, 17 Apr 2023 11:34:10 +0200 > From: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> > > Remove fdb entries always when ageing time expired. > > Allow user to set ageing time using port object attribute. > > Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> > --- > .../net/ethernet/intel/ice/ice_eswitch_br.c | 46 +++++++++++++++++++ > .../net/ethernet/intel/ice/ice_eswitch_br.h | 11 +++++ > 2 files changed, 57 insertions(+) > > diff --git a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > index a21eca5088f7..6c3144f98100 100644 > --- a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > +++ b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > @@ -8,6 +8,8 @@ > #include "ice_vlan.h" > #include "ice_vf_vsi_vlan_ops.h" > > +#define ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS 1000 I think you can define it without '_MS' and as msecs_to_jiffies(1000) right here, so that you wouldn't need to convert it at use sites (it's more expensive to do there in terms of chars vs line width). > + > static const struct rhashtable_params ice_fdb_ht_params = { > .key_offset = offsetof(struct ice_esw_br_fdb_entry, data), > .key_len = sizeof(struct ice_esw_br_fdb_data), > @@ -440,6 +442,7 @@ ice_eswitch_br_fdb_entry_create(struct net_device *netdev, > fdb_entry->br_port = br_port; > fdb_entry->flow = flow; > fdb_entry->dev = netdev; > + fdb_entry->last_use = jiffies; > event = SWITCHDEV_FDB_ADD_TO_BRIDGE; > > if (added_by_user) { > @@ -838,6 +841,10 @@ ice_eswitch_br_port_obj_attr_set(struct net_device *netdev, const void *ctx, > ice_eswitch_br_vlan_filtering_set(br_port->bridge, > attr->u.vlan_filtering); > break; > + case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME: > + br_port->bridge->ageing_time = > + clock_t_to_jiffies(attr->u.ageing_time); Why reviews also teach the reviewer himself -- because I never knew of clock_t and that userspace has its own ticks, which we have to convert O_. (sounds as a joke BTW, why not just use ms/us/ns everywhere, "tick" is something very intimate/internal) > + break; > default: > return -EOPNOTSUPP; > } [...] > + if (!bridge) > + return; > + > + rtnl_lock(); > + list_for_each_entry_safe(entry, tmp, &bridge->fdb_list, list) { > + if (entry->flags & ICE_ESWITCH_BR_FDB_ADDED_BY_USER) > + continue; > + > + if (time_is_before_jiffies(entry->last_use + > + bridge->ageing_time)) > + ice_eswitch_br_fdb_entry_notify_and_cleanup(bridge, > + entry); Maybe invert the condition to give a bit more space for arguments? if (time_is_after_eq_jiffies(entry->last_use + bridge->ageing_time)) continue; ice_eswitch_br_fdb_entry_notify_and_cleanup(bridge, entry); } > + } > + rtnl_unlock(); > +} > + > +static void ice_eswitch_br_update_work(struct work_struct *work) > +{ > + struct ice_esw_br_offloads *br_offloads = > + ice_work_to_br_offloads(work); Assign it in a separate line pls :s > + > + ice_eswitch_br_update(br_offloads); > + > + queue_delayed_work(br_offloads->wq, &br_offloads->update_work, > + msecs_to_jiffies(ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS)); > +} [...] Thanks, Olek
Hi Olek Sorry for late response, I didn't manage to answer all your comments before my vacation :) Will continue this week. > -----Original Message----- > From: Lobakin, Aleksander <aleksander.lobakin@intel.com> > Sent: piątek, 21 kwietnia 2023 18:23 > To: Drewek, Wojciech <wojciech.drewek@intel.com> > Cc: intel-wired-lan@lists.osuosl.org; netdev@vger.kernel.org; Ertman, David M <david.m.ertman@intel.com>; > michal.swiatkowski@linux.intel.com; marcin.szycik@linux.intel.com; Chmielewski, Pawel <pawel.chmielewski@intel.com>; > Samudrala, Sridhar <sridhar.samudrala@intel.com> > Subject: Re: [PATCH net-next 10/12] ice: implement static version of ageing > > From: Wojciech Drewek <wojciech.drewek@intel.com> > Date: Mon, 17 Apr 2023 11:34:10 +0200 > > > From: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> > > > > Remove fdb entries always when ageing time expired. > > > > Allow user to set ageing time using port object attribute. > > > > Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> > > --- > > .../net/ethernet/intel/ice/ice_eswitch_br.c | 46 +++++++++++++++++++ > > .../net/ethernet/intel/ice/ice_eswitch_br.h | 11 +++++ > > 2 files changed, 57 insertions(+) > > > > diff --git a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > > index a21eca5088f7..6c3144f98100 100644 > > --- a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > > +++ b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c > > @@ -8,6 +8,8 @@ > > #include "ice_vlan.h" > > #include "ice_vf_vsi_vlan_ops.h" > > > > +#define ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS 1000 > > I think you can define it without '_MS' and as msecs_to_jiffies(1000) > right here, so that you wouldn't need to convert it at use sites (it's > more expensive to do there in terms of chars vs line width). Makes sense > > > + > > static const struct rhashtable_params ice_fdb_ht_params = { > > .key_offset = offsetof(struct ice_esw_br_fdb_entry, data), > > .key_len = sizeof(struct ice_esw_br_fdb_data), > > @@ -440,6 +442,7 @@ ice_eswitch_br_fdb_entry_create(struct net_device *netdev, > > fdb_entry->br_port = br_port; > > fdb_entry->flow = flow; > > fdb_entry->dev = netdev; > > + fdb_entry->last_use = jiffies; > > event = SWITCHDEV_FDB_ADD_TO_BRIDGE; > > > > if (added_by_user) { > > @@ -838,6 +841,10 @@ ice_eswitch_br_port_obj_attr_set(struct net_device *netdev, const void *ctx, > > ice_eswitch_br_vlan_filtering_set(br_port->bridge, > > attr->u.vlan_filtering); > > break; > > + case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME: > > + br_port->bridge->ageing_time = > > + clock_t_to_jiffies(attr->u.ageing_time); > > Why reviews also teach the reviewer himself -- because I never knew of > clock_t and that userspace has its own ticks, which we have to convert O_. > > (sounds as a joke BTW, why not just use ms/us/ns everywhere, "tick" is > something very intimate/internal) > > > + break; > > default: > > return -EOPNOTSUPP; > > } > > [...] > > > + if (!bridge) > > + return; > > + > > + rtnl_lock(); > > + list_for_each_entry_safe(entry, tmp, &bridge->fdb_list, list) { > > + if (entry->flags & ICE_ESWITCH_BR_FDB_ADDED_BY_USER) > > + continue; > > + > > + if (time_is_before_jiffies(entry->last_use + > > + bridge->ageing_time)) > > + ice_eswitch_br_fdb_entry_notify_and_cleanup(bridge, > > + entry); > > Maybe invert the condition to give a bit more space for arguments? > > if (time_is_after_eq_jiffies(entry->last_use + > bridge->ageing_time)) > continue; > > ice_eswitch_br_fdb_entry_notify_and_cleanup(bridge, entry); > } sure > > > > + } > > + rtnl_unlock(); > > +} > > + > > +static void ice_eswitch_br_update_work(struct work_struct *work) > > +{ > > + struct ice_esw_br_offloads *br_offloads = > > + ice_work_to_br_offloads(work); > > Assign it in a separate line pls :s ok > > > + > > + ice_eswitch_br_update(br_offloads); > > + > > + queue_delayed_work(br_offloads->wq, &br_offloads->update_work, > > + msecs_to_jiffies(ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS)); > > +} > [...] > > Thanks, > Olek
From: Wojciech Drewek <wojciech.drewek@intel.com> Date: Tue, 9 May 2023 12:55:53 +0200 > Hi Olek > > Sorry for late response, I didn't manage to answer all your comments before my vacation :) > Will continue this week. No problems, I had a little vacation as well, so wouldn't reply either way :D > >> -----Original Message----- >> From: Lobakin, Aleksander <aleksander.lobakin@intel.com> >> Sent: piątek, 21 kwietnia 2023 18:23 >> To: Drewek, Wojciech <wojciech.drewek@intel.com> >> Cc: intel-wired-lan@lists.osuosl.org; netdev@vger.kernel.org; Ertman, David M <david.m.ertman@intel.com>; >> michal.swiatkowski@linux.intel.com; marcin.szycik@linux.intel.com; Chmielewski, Pawel <pawel.chmielewski@intel.com>; >> Samudrala, Sridhar <sridhar.samudrala@intel.com> >> Subject: Re: [PATCH net-next 10/12] ice: implement static version of ageing >> >> From: Wojciech Drewek <wojciech.drewek@intel.com> >> Date: Mon, 17 Apr 2023 11:34:10 +0200 >> >>> From: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> >>> >>> Remove fdb entries always when ageing time expired. >>> >>> Allow user to set ageing time using port object attribute. >>> >>> Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Thanks, Olek
diff --git a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c index a21eca5088f7..6c3144f98100 100644 --- a/drivers/net/ethernet/intel/ice/ice_eswitch_br.c +++ b/drivers/net/ethernet/intel/ice/ice_eswitch_br.c @@ -8,6 +8,8 @@ #include "ice_vlan.h" #include "ice_vf_vsi_vlan_ops.h" +#define ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS 1000 + static const struct rhashtable_params ice_fdb_ht_params = { .key_offset = offsetof(struct ice_esw_br_fdb_entry, data), .key_len = sizeof(struct ice_esw_br_fdb_data), @@ -440,6 +442,7 @@ ice_eswitch_br_fdb_entry_create(struct net_device *netdev, fdb_entry->br_port = br_port; fdb_entry->flow = flow; fdb_entry->dev = netdev; + fdb_entry->last_use = jiffies; event = SWITCHDEV_FDB_ADD_TO_BRIDGE; if (added_by_user) { @@ -838,6 +841,10 @@ ice_eswitch_br_port_obj_attr_set(struct net_device *netdev, const void *ctx, ice_eswitch_br_vlan_filtering_set(br_port->bridge, attr->u.vlan_filtering); break; + case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME: + br_port->bridge->ageing_time = + clock_t_to_jiffies(attr->u.ageing_time); + break; default: return -EOPNOTSUPP; } @@ -1011,6 +1018,7 @@ ice_eswitch_br_init(struct ice_esw_br_offloads *br_offloads, int ifindex) INIT_LIST_HEAD(&bridge->fdb_list); bridge->br_offloads = br_offloads; bridge->ifindex = ifindex; + bridge->ageing_time = clock_t_to_jiffies(BR_DEFAULT_AGEING_TIME); xa_init(&bridge->ports); br_offloads->bridge = bridge; @@ -1210,6 +1218,7 @@ ice_eswitch_br_offloads_deinit(struct ice_pf *pf) if (!br_offloads) return; + cancel_delayed_work_sync(&br_offloads->update_work); unregister_netdevice_notifier(&br_offloads->netdev_nb); unregister_switchdev_blocking_notifier(&br_offloads->switchdev_blk); unregister_switchdev_notifier(&br_offloads->switchdev_nb); @@ -1224,6 +1233,38 @@ ice_eswitch_br_offloads_deinit(struct ice_pf *pf) rtnl_unlock(); } +static void ice_eswitch_br_update(struct ice_esw_br_offloads *br_offloads) +{ + struct ice_esw_br *bridge = br_offloads->bridge; + struct ice_esw_br_fdb_entry *entry, *tmp; + + if (!bridge) + return; + + rtnl_lock(); + list_for_each_entry_safe(entry, tmp, &bridge->fdb_list, list) { + if (entry->flags & ICE_ESWITCH_BR_FDB_ADDED_BY_USER) + continue; + + if (time_is_before_jiffies(entry->last_use + + bridge->ageing_time)) + ice_eswitch_br_fdb_entry_notify_and_cleanup(bridge, + entry); + } + rtnl_unlock(); +} + +static void ice_eswitch_br_update_work(struct work_struct *work) +{ + struct ice_esw_br_offloads *br_offloads = + ice_work_to_br_offloads(work); + + ice_eswitch_br_update(br_offloads); + + queue_delayed_work(br_offloads->wq, &br_offloads->update_work, + msecs_to_jiffies(ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS)); +} + int ice_eswitch_br_offloads_init(struct ice_pf *pf) { @@ -1272,6 +1313,11 @@ ice_eswitch_br_offloads_init(struct ice_pf *pf) goto err_reg_netdev_nb; } + INIT_DELAYED_WORK(&br_offloads->update_work, + ice_eswitch_br_update_work); + queue_delayed_work(br_offloads->wq, &br_offloads->update_work, + msecs_to_jiffies(ICE_ESW_BRIDGE_UPDATE_INTERVAL_MS)); + return 0; err_reg_netdev_nb: diff --git a/drivers/net/ethernet/intel/ice/ice_eswitch_br.h b/drivers/net/ethernet/intel/ice/ice_eswitch_br.h index b6eef068ea81..42fff681fb71 100644 --- a/drivers/net/ethernet/intel/ice/ice_eswitch_br.h +++ b/drivers/net/ethernet/intel/ice/ice_eswitch_br.h @@ -5,6 +5,7 @@ #define _ICE_ESWITCH_BR_H_ #include <linux/rhashtable.h> +#include <linux/workqueue.h> struct ice_esw_br_fdb_data { unsigned char addr[ETH_ALEN]; @@ -30,6 +31,8 @@ struct ice_esw_br_fdb_entry { struct net_device *dev; struct ice_esw_br_port *br_port; struct ice_esw_br_flow *flow; + + unsigned long last_use; }; enum ice_esw_br_port_type { @@ -58,6 +61,8 @@ struct ice_esw_br { struct xarray ports; struct rhashtable fdb_ht; struct list_head fdb_list; + + unsigned long ageing_time; }; struct ice_esw_br_offloads { @@ -68,6 +73,7 @@ struct ice_esw_br_offloads { struct notifier_block switchdev_nb; struct workqueue_struct *wq; + struct delayed_work update_work; }; struct ice_esw_br_fdb_work { @@ -88,6 +94,11 @@ struct ice_esw_br_vlan { struct ice_esw_br_offloads, \ nb_name) +#define ice_work_to_br_offloads(w) \ + container_of(w, \ + struct ice_esw_br_offloads, \ + update_work.work) + #define ice_work_to_fdb_work(w) \ container_of(w, \ struct ice_esw_br_fdb_work, \