lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20220929181411.61331-1-nhuck@google.com> Date: Thu, 29 Sep 2022 11:14:11 -0700 From: Nathan Huckleberry <nhuck@...gle.com> To: kuba@...nel.org Cc: davem@...emloft.net, decui@...rosoft.com, edumazet@...gle.com, error27@...il.com, haiyangz@...rosoft.com, kys@...rosoft.com, linux-hyperv@...r.kernel.org, linux-kernel@...r.kernel.org, llvm@...ts.linux.dev, nathan@...nel.org, ndesaulniers@...gle.com, netdev@...r.kernel.org, nhuck@...gle.com, pabeni@...hat.com, sthemmin@...rosoft.com, trix@...hat.com, wei.liu@...nel.org Subject: [PATCH v2] net: mana: Fix return type of mana_start_xmit 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 mana_start_xmit should be changed from int to netdev_tx_t. Reported-by: Dan Carpenter <error27@...il.com> Link: https://github.com/ClangBuiltLinux/linux/issues/1703 Cc: llvm@...ts.linux.dev Signed-off-by: Nathan Huckleberry <nhuck@...gle.com> Reviewed-by: Dexuan Cui <decui@...rosoft.com> --- Changes v1 -> v2 - Update header file drivers/net/ethernet/microsoft/mana/mana_en.c | 2 +- include/net/mana/mana.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/microsoft/mana/mana_en.c b/drivers/net/ethernet/microsoft/mana/mana_en.c index 7ca313c7b7b3..a3df5678bb4f 100644 --- a/drivers/net/ethernet/microsoft/mana/mana_en.c +++ b/drivers/net/ethernet/microsoft/mana/mana_en.c @@ -141,7 +141,7 @@ static int mana_map_skb(struct sk_buff *skb, struct mana_port_context *apc, return -ENOMEM; } -int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) +netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) { enum mana_tx_pkt_format pkt_fmt = MANA_SHORT_PKT_FMT; struct mana_port_context *apc = netdev_priv(ndev); diff --git a/include/net/mana/mana.h b/include/net/mana/mana.h index 20212ffeefb9..3bb579962a14 100644 --- a/include/net/mana/mana.h +++ b/include/net/mana/mana.h @@ -390,7 +390,7 @@ struct mana_port_context { struct mana_ethtool_stats eth_stats; }; -int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev); +netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev); int mana_config_rss(struct mana_port_context *ac, enum TRI_STATE rx, bool update_hash, bool update_tab); -- 2.38.0.rc1.362.ged0d419d3c-goog
Powered by blists - more mailing lists