Skip to content

Commit c33bfaf

Browse files
vladimirolteankuba-moo
authored andcommittedJan 19, 2023
net: enetc: set up XDP program under enetc_reconfigure()
Offloading a BPF program to the RX path of the driver suffers from the same problems as the PTP reconfiguration - improper error checking can leave the driver in an invalid state, and the link on the PHY is lost. Reuse the enetc_reconfigure() procedure, but here, we need to run some code in the middle of the ring reconfiguration procedure - while the interface is still down. Introduce a callback which makes that possible. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 766338c commit c33bfaf

File tree

1 file changed

+32
-19
lines changed
  • drivers/net/ethernet/freescale/enetc

1 file changed

+32
-19
lines changed
 

‎drivers/net/ethernet/freescale/enetc/enetc.c

+32-19
Original file line numberDiff line numberDiff line change
@@ -2489,16 +2489,24 @@ int enetc_close(struct net_device *ndev)
24892489
return 0;
24902490
}
24912491

2492-
static int enetc_reconfigure(struct enetc_ndev_priv *priv, bool extended)
2492+
static int enetc_reconfigure(struct enetc_ndev_priv *priv, bool extended,
2493+
int (*cb)(struct enetc_ndev_priv *priv, void *ctx),
2494+
void *ctx)
24932495
{
24942496
struct enetc_bdr_resource *tx_res, *rx_res;
24952497
int err;
24962498

24972499
ASSERT_RTNL();
24982500

2499-
/* If the interface is down, do nothing. */
2500-
if (!netif_running(priv->ndev))
2501+
/* If the interface is down, run the callback right away,
2502+
* without reconfiguration.
2503+
*/
2504+
if (!netif_running(priv->ndev)) {
2505+
if (cb)
2506+
cb(priv, ctx);
2507+
25012508
return 0;
2509+
}
25022510

25032511
tx_res = enetc_alloc_tx_resources(priv);
25042512
if (IS_ERR(tx_res)) {
@@ -2516,6 +2524,10 @@ static int enetc_reconfigure(struct enetc_ndev_priv *priv, bool extended)
25162524
enetc_clear_bdrs(priv);
25172525
enetc_free_rxtx_rings(priv);
25182526

2527+
/* Interface is down, run optional callback now */
2528+
if (cb)
2529+
cb(priv, ctx);
2530+
25192531
enetc_assign_tx_resources(priv, tx_res);
25202532
enetc_assign_rx_resources(priv, rx_res);
25212533
enetc_setup_bdrs(priv, extended);
@@ -2586,21 +2598,11 @@ int enetc_setup_tc_mqprio(struct net_device *ndev, void *type_data)
25862598
return 0;
25872599
}
25882600

2589-
static int enetc_setup_xdp_prog(struct net_device *ndev, struct bpf_prog *prog,
2590-
struct netlink_ext_ack *extack)
2601+
static int enetc_reconfigure_xdp_cb(struct enetc_ndev_priv *priv, void *ctx)
25912602
{
2592-
struct enetc_ndev_priv *priv = netdev_priv(ndev);
2593-
struct bpf_prog *old_prog;
2594-
bool is_up;
2603+
struct bpf_prog *old_prog, *prog = ctx;
25952604
int i;
25962605

2597-
/* The buffer layout is changing, so we need to drain the old
2598-
* RX buffers and seed new ones.
2599-
*/
2600-
is_up = netif_running(ndev);
2601-
if (is_up)
2602-
dev_close(ndev);
2603-
26042606
old_prog = xchg(&priv->xdp_prog, prog);
26052607
if (old_prog)
26062608
bpf_prog_put(old_prog);
@@ -2616,12 +2618,23 @@ static int enetc_setup_xdp_prog(struct net_device *ndev, struct bpf_prog *prog,
26162618
rx_ring->buffer_offset = ENETC_RXB_PAD;
26172619
}
26182620

2619-
if (is_up)
2620-
return dev_open(ndev, extack);
2621-
26222621
return 0;
26232622
}
26242623

2624+
static int enetc_setup_xdp_prog(struct net_device *ndev, struct bpf_prog *prog,
2625+
struct netlink_ext_ack *extack)
2626+
{
2627+
struct enetc_ndev_priv *priv = netdev_priv(ndev);
2628+
bool extended;
2629+
2630+
extended = !!(priv->active_offloads & ENETC_F_RX_TSTAMP);
2631+
2632+
/* The buffer layout is changing, so we need to drain the old
2633+
* RX buffers and seed new ones.
2634+
*/
2635+
return enetc_reconfigure(priv, extended, enetc_reconfigure_xdp_cb, prog);
2636+
}
2637+
26252638
int enetc_setup_bpf(struct net_device *ndev, struct netdev_bpf *bpf)
26262639
{
26272640
switch (bpf->command) {
@@ -2755,7 +2768,7 @@ static int enetc_hwtstamp_set(struct net_device *ndev, struct ifreq *ifr)
27552768
if ((new_offloads ^ priv->active_offloads) & ENETC_F_RX_TSTAMP) {
27562769
bool extended = !!(new_offloads & ENETC_F_RX_TSTAMP);
27572770

2758-
err = enetc_reconfigure(priv, extended);
2771+
err = enetc_reconfigure(priv, extended, NULL, NULL);
27592772
if (err)
27602773
return err;
27612774
}

0 commit comments

Comments
 (0)
Please sign in to comment.