]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
r8169: replace custom flag with disable_work() et al
authorHeiner Kallweit <hkallweit1@gmail.com>
Wed, 16 Oct 2024 20:06:53 +0000 (22:06 +0200)
committerAndrew Lunn <andrew@lunn.ch>
Sun, 20 Oct 2024 15:20:43 +0000 (10:20 -0500)
So far we use a custom flag to define when a task can be scheduled and
when not. Let's use the standard mechanism with disable_work() et al
instead.
Note that in rtl8169_close() we can remove the call to cancel_work()
because we now call disable_work_sync() in rtl8169_down() already.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
drivers/net/ethernet/realtek/r8169_main.c

index cd0d9ecca5c95b0c8b558b33cf069e2210d07be7..7f1d804d3fa2e0bfe01cf9b5e65ed950d0f428c5 100644 (file)
@@ -618,7 +618,6 @@ struct rtl8169_tc_offsets {
 };
 
 enum rtl_flag {
-       RTL_FLAG_TASK_ENABLED = 0,
        RTL_FLAG_TASK_RESET_PENDING,
        RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE,
        RTL_FLAG_TASK_TX_TIMEOUT,
@@ -2503,11 +2502,9 @@ u16 rtl8168h_2_get_adc_bias_ioffset(struct rtl8169_private *tp)
 
 static void rtl_schedule_task(struct rtl8169_private *tp, enum rtl_flag flag)
 {
-       if (!test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
-               return;
-
        set_bit(flag, tp->wk.flags);
-       schedule_work(&tp->wk.work);
+       if (!schedule_work(&tp->wk.work))
+               clear_bit(flag, tp->wk.flags);
 }
 
 static void rtl8169_init_phy(struct rtl8169_private *tp)
@@ -4799,9 +4796,6 @@ static void rtl_task(struct work_struct *work)
                container_of(work, struct rtl8169_private, wk.work);
        int ret;
 
-       if (!test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags))
-               return;
-
        if (test_and_clear_bit(RTL_FLAG_TASK_TX_TIMEOUT, tp->wk.flags)) {
                /* if chip isn't accessible, reset bus to revive it */
                if (RTL_R32(tp, TxConfig) == ~0) {
@@ -4885,6 +4879,7 @@ static int r8169_phy_connect(struct rtl8169_private *tp)
 
 static void rtl8169_down(struct rtl8169_private *tp)
 {
+       disable_work_sync(&tp->wk.work);
        /* Clear all task flags */
        bitmap_zero(tp->wk.flags, RTL_FLAG_MAX);
 
@@ -4913,7 +4908,7 @@ static void rtl8169_up(struct rtl8169_private *tp)
        phy_resume(tp->phydev);
        rtl8169_init_phy(tp);
        napi_enable(&tp->napi);
-       set_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags);
+       enable_work(&tp->wk.work);
        rtl_reset_work(tp);
 
        phy_start(tp->phydev);
@@ -4930,8 +4925,6 @@ static int rtl8169_close(struct net_device *dev)
        rtl8169_down(tp);
        rtl8169_rx_clear(tp);
 
-       cancel_work(&tp->wk.work);
-
        free_irq(tp->irq, tp);
 
        phy_disconnect(tp->phydev);
@@ -5164,7 +5157,7 @@ static void rtl_remove_one(struct pci_dev *pdev)
        if (pci_dev_run_wake(pdev))
                pm_runtime_get_noresume(&pdev->dev);
 
-       cancel_work_sync(&tp->wk.work);
+       disable_work_sync(&tp->wk.work);
 
        if (IS_ENABLED(CONFIG_R8169_LEDS))
                r8169_remove_leds(tp->leds);
@@ -5578,6 +5571,7 @@ static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
        tp->irq = pci_irq_vector(pdev, 0);
 
        INIT_WORK(&tp->wk.work, rtl_task);
+       disable_work(&tp->wk.work);
 
        rtl_init_mac_address(tp);