Patch "iavf: schedule watchdog immediately when changing primary MAC" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    iavf: schedule watchdog immediately when changing primary MAC

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     iavf-schedule-watchdog-immediately-when-changing-pri.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 7a95d659cad842b3b0a3e30951597e578fe80069
Author: Stefan Assmann <sassmann@xxxxxxxxx>
Date:   Tue Jan 10 09:00:18 2023 +0100

    iavf: schedule watchdog immediately when changing primary MAC
    
    [ Upstream commit e2b53ea5a7c1fb484277ad12cd075f502cf03b04 ]
    
    iavf_replace_primary_mac() utilizes queue_work() to schedule the
    watchdog task but that only ensures that the watchdog task is queued
    to run. To make sure the watchdog is executed asap use
    mod_delayed_work().
    
    Without this patch it may take up to 2s until the watchdog task gets
    executed, which may cause long delays when setting the MAC address.
    
    Fixes: a3e839d539e0 ("iavf: Add usage of new virtchnl format to set default MAC")
    Signed-off-by: Stefan Assmann <sassmann@xxxxxxxxx>
    Reviewed-by: Michal Schmidt <mschmidt@xxxxxxxxxx>
    Tested-by: Michal Schmidt <mschmidt@xxxxxxxxxx>
    Tested-by: Rafal Romanowski <rafal.romanowski@xxxxxxxxx>
    Signed-off-by: Tony Nguyen <anthony.l.nguyen@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/intel/iavf/iavf_main.c b/drivers/net/ethernet/intel/iavf/iavf_main.c
index efc7735ece30..3dad834b9b8e 100644
--- a/drivers/net/ethernet/intel/iavf/iavf_main.c
+++ b/drivers/net/ethernet/intel/iavf/iavf_main.c
@@ -1033,7 +1033,7 @@ int iavf_replace_primary_mac(struct iavf_adapter *adapter,
 
 	/* schedule the watchdog task to immediately process the request */
 	if (f) {
-		queue_work(adapter->wq, &adapter->watchdog_task.work);
+		mod_delayed_work(adapter->wq, &adapter->watchdog_task, 0);
 		return 0;
 	}
 	return -ENOMEM;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux