Message ID | 20220829101651.633840-1-simon.horman@corigine.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 642b2122c5df332a6df52dd1f91e552bc4356951 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] nfp: fix the access to management firmware hanging | expand |
On 8/29/2022 3:16 AM, Simon Horman wrote: > From: Gao Xiao <gao.xiao@corigine.com> > > When running `ethtool -p` with the old management firmware, > the management firmware resource is not correctly released, > which causes firmware related malfunction: all the access > to management firmware hangs. > > It releases the management firmware resource when set id > mode operation is not supported. > > Fixes: ccb9bc1dfa44 ("nfp: add 'ethtool --identify' support") > Signed-off-by: Gao Xiao <gao.xiao@corigine.com> > Reviewed-by: Louis Peens <louis.peens@corigine.com> > Signed-off-by: Simon Horman <simon.horman@corigine.com> Looks sane! Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Hello: This patch was applied to netdev/net.git (master) by Jakub Kicinski <kuba@kernel.org>: On Mon, 29 Aug 2022 12:16:51 +0200 you wrote: > From: Gao Xiao <gao.xiao@corigine.com> > > When running `ethtool -p` with the old management firmware, > the management firmware resource is not correctly released, > which causes firmware related malfunction: all the access > to management firmware hangs. > > [...] Here is the summary with links: - [net] nfp: fix the access to management firmware hanging https://git.kernel.org/netdev/net/c/642b2122c5df You are awesome, thank you!
diff --git a/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.c b/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.c index edd300033735..4cc38799eabc 100644 --- a/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.c +++ b/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.c @@ -507,6 +507,7 @@ int nfp_eth_set_idmode(struct nfp_cpp *cpp, unsigned int idx, bool state) if (nfp_nsp_get_abi_ver_minor(nsp) < 32) { nfp_err(nfp_nsp_cpp(nsp), "set id mode operation not supported, please update flash\n"); + nfp_eth_config_cleanup_end(nsp); return -EOPNOTSUPP; }