Patch "octeon_ep: ensure octep_get_link_status() successfully before octep_link_up()" has been added to the 6.0-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

    octeon_ep: ensure octep_get_link_status() successfully before octep_link_up()

to the 6.0-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:
     octeon_ep-ensure-octep_get_link_status-successfully-.patch
and it can be found in the queue-6.0 subdirectory.

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



commit 6e74b4f4fc48ff898f91a361f8613a9aa6d643ad
Author: Ziyang Xuan <william.xuanziyang@xxxxxxxxxx>
Date:   Fri Nov 11 15:08:47 2022 +0800

    octeon_ep: ensure octep_get_link_status() successfully before octep_link_up()
    
    [ Upstream commit 9d3ff7131877fb092185c369fbb14b57ac4e7cec ]
    
    octep_get_link_status() can fail because send mbox message failed, then
    octep_get_link_status() will return ret less than 0. Excute octep_link_up()
    as long as ret is not equal to 0 in octep_open() now. That is not correct.
    
    The value type of link.state is enum octep_ctrl_net_state. Positive value
    represents up. Excute octep_link_up() when ret is bigger than 0.
    
    Fixes: 862cd659a6fb ("octeon_ep: Add driver framework and device initialization")
    Signed-off-by: Ziyang Xuan <william.xuanziyang@xxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/marvell/octeon_ep/octep_main.c b/drivers/net/ethernet/marvell/octeon_ep/octep_main.c
index 7083c995d0c1..92ca3e502465 100644
--- a/drivers/net/ethernet/marvell/octeon_ep/octep_main.c
+++ b/drivers/net/ethernet/marvell/octeon_ep/octep_main.c
@@ -521,7 +521,7 @@ static int octep_open(struct net_device *netdev)
 	octep_oq_dbell_init(oct);
 
 	ret = octep_get_link_status(oct);
-	if (ret)
+	if (ret > 0)
 		octep_link_up(netdev);
 
 	return 0;



[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