@@ -2489,16 +2489,24 @@ int enetc_close(struct net_device *ndev)
2489
2489
return 0 ;
2490
2490
}
2491
2491
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 )
2493
2495
{
2494
2496
struct enetc_bdr_resource * tx_res , * rx_res ;
2495
2497
int err ;
2496
2498
2497
2499
ASSERT_RTNL ();
2498
2500
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
+
2501
2508
return 0 ;
2509
+ }
2502
2510
2503
2511
tx_res = enetc_alloc_tx_resources (priv );
2504
2512
if (IS_ERR (tx_res )) {
@@ -2516,6 +2524,10 @@ static int enetc_reconfigure(struct enetc_ndev_priv *priv, bool extended)
2516
2524
enetc_clear_bdrs (priv );
2517
2525
enetc_free_rxtx_rings (priv );
2518
2526
2527
+ /* Interface is down, run optional callback now */
2528
+ if (cb )
2529
+ cb (priv , ctx );
2530
+
2519
2531
enetc_assign_tx_resources (priv , tx_res );
2520
2532
enetc_assign_rx_resources (priv , rx_res );
2521
2533
enetc_setup_bdrs (priv , extended );
@@ -2586,21 +2598,11 @@ int enetc_setup_tc_mqprio(struct net_device *ndev, void *type_data)
2586
2598
return 0 ;
2587
2599
}
2588
2600
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 )
2591
2602
{
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 ;
2595
2604
int i ;
2596
2605
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
-
2604
2606
old_prog = xchg (& priv -> xdp_prog , prog );
2605
2607
if (old_prog )
2606
2608
bpf_prog_put (old_prog );
@@ -2616,12 +2618,23 @@ static int enetc_setup_xdp_prog(struct net_device *ndev, struct bpf_prog *prog,
2616
2618
rx_ring -> buffer_offset = ENETC_RXB_PAD ;
2617
2619
}
2618
2620
2619
- if (is_up )
2620
- return dev_open (ndev , extack );
2621
-
2622
2621
return 0 ;
2623
2622
}
2624
2623
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
+
2625
2638
int enetc_setup_bpf (struct net_device * ndev , struct netdev_bpf * bpf )
2626
2639
{
2627
2640
switch (bpf -> command ) {
@@ -2755,7 +2768,7 @@ static int enetc_hwtstamp_set(struct net_device *ndev, struct ifreq *ifr)
2755
2768
if ((new_offloads ^ priv -> active_offloads ) & ENETC_F_RX_TSTAMP ) {
2756
2769
bool extended = !!(new_offloads & ENETC_F_RX_TSTAMP );
2757
2770
2758
- err = enetc_reconfigure (priv , extended );
2771
+ err = enetc_reconfigure (priv , extended , NULL , NULL );
2759
2772
if (err )
2760
2773
return err ;
2761
2774
}
0 commit comments