Patch "net: ethernet: ti: davinci_emac: Fix return type of emac_dev_xmit" 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

    net: ethernet: ti: davinci_emac: Fix return type of emac_dev_xmit

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:
     net-ethernet-ti-davinci_emac-fix-return-type-of-emac.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 37936c71fe02e0748b89444dedda1c3cdbe3afd5
Author: Nathan Huckleberry <nhuck@xxxxxxxxxx>
Date:   Mon Sep 12 12:50:19 2022 -0700

    net: ethernet: ti: davinci_emac: Fix return type of emac_dev_xmit
    
    [ Upstream commit 5972ca946098487c5155fe13654743f9010f5ed5 ]
    
    The ndo_start_xmit field in net_device_ops is expected to be of type
    netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb, struct net_device *dev).
    
    The mismatched return type breaks forward edge kCFI since the underlying
    function definition does not match the function hook definition.
    
    The return type of emac_dev_xmit should be changed from int to
    netdev_tx_t.
    
    Reported-by: Dan Carpenter <error27@xxxxxxxxx>
    Link: https://github.com/ClangBuiltLinux/linux/issues/1703
    Cc: llvm@xxxxxxxxxxxxxxx
    Signed-off-by: Nathan Huckleberry <nhuck@xxxxxxxxxx>
    Reviewed-by: Nathan Chancellor <nathan@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220912195023.810319-1-nhuck@xxxxxxxxxx
    Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index 2a3e4e842fa5..e203a5984f03 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -949,7 +949,7 @@ static void emac_tx_handler(void *token, int len, int status)
  *
  * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
  */
-static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
+static netdev_tx_t emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
 {
 	struct device *emac_dev = &ndev->dev;
 	int ret_code;



[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