From: Simon Horman <horms@kernel.org>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: intel-wired-lan@lists.osuosl.org,
kernel-janitors@vger.kernel.org,
Jesse Brandeburg <jesse.brandeburg@intel.com>,
Greg Rose <gregory.v.rose@intel.com>,
Eric Dumazet <edumazet@google.com>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
netdev@vger.kernel.org, Jakub Kicinski <kuba@kernel.org>,
Paolo Abeni <pabeni@redhat.com>,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [Intel-wired-lan] [PATCH net] ixgbe: fix crash with empty VF macvlan list
Date: Fri, 6 Oct 2023 13:16:27 +0200 [thread overview]
Message-ID: <ZR/si/di5IbSB9Gq@kernel.org> (raw)
In-Reply-To: <3cee09b8-4c49-4a39-b889-75c0798dfe1c@moroto.mountain>
On Thu, Oct 05, 2023 at 04:57:02PM +0300, Dan Carpenter wrote:
> The adapter->vf_mvs.l list needs to be initialized even if the list is
> empty. Otherwise it will lead to crashes.
>
> Fixes: c6bda30a06d9 ("ixgbe: Reconfigure SR-IOV Init")
Hi Dan,
I see that the patch cited above added the line you are changing.
But it also seems to me that patch was moving it from elsewhere.
Perhaps I am mistaken, but I wonder if this is a better tag.
Fixes: a1cbb15c1397 ("ixgbe: Add macvlan support for VF")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
> ---
> drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> index a703ba975205..9cfdfa8a4355 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> @@ -28,6 +28,9 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter,
> struct vf_macvlans *mv_list;
> int num_vf_macvlans, i;
>
> + /* Initialize list of VF macvlans */
> + INIT_LIST_HEAD(&adapter->vf_mvs.l);
> +
> num_vf_macvlans = hw->mac.num_rar_entries -
> (IXGBE_MAX_PF_MACVLANS + 1 + num_vfs);
> if (!num_vf_macvlans)
> @@ -36,8 +39,6 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter,
> mv_list = kcalloc(num_vf_macvlans, sizeof(struct vf_macvlans),
> GFP_KERNEL);
> if (mv_list) {
I'm not sure it it is worth it, but perhaps more conventional error
handling could be used here:
if (!mv_list)
return;
for (i = 0; i < num_vf_macvlans; i++) {
...
> - /* Initialize list of VF macvlans */
> - INIT_LIST_HEAD(&adapter->vf_mvs.l);
> for (i = 0; i < num_vf_macvlans; i++) {
> mv_list[i].vf = -1;
> mv_list[i].free = true;
> --
> 2.39.2
>
>
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@kernel.org>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: Greg Rose <gregory.v.rose@intel.com>,
Jesse Brandeburg <jesse.brandeburg@intel.com>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH net] ixgbe: fix crash with empty VF macvlan list
Date: Fri, 6 Oct 2023 13:16:27 +0200 [thread overview]
Message-ID: <ZR/si/di5IbSB9Gq@kernel.org> (raw)
In-Reply-To: <3cee09b8-4c49-4a39-b889-75c0798dfe1c@moroto.mountain>
On Thu, Oct 05, 2023 at 04:57:02PM +0300, Dan Carpenter wrote:
> The adapter->vf_mvs.l list needs to be initialized even if the list is
> empty. Otherwise it will lead to crashes.
>
> Fixes: c6bda30a06d9 ("ixgbe: Reconfigure SR-IOV Init")
Hi Dan,
I see that the patch cited above added the line you are changing.
But it also seems to me that patch was moving it from elsewhere.
Perhaps I am mistaken, but I wonder if this is a better tag.
Fixes: a1cbb15c1397 ("ixgbe: Add macvlan support for VF")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
> ---
> drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> index a703ba975205..9cfdfa8a4355 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
> @@ -28,6 +28,9 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter,
> struct vf_macvlans *mv_list;
> int num_vf_macvlans, i;
>
> + /* Initialize list of VF macvlans */
> + INIT_LIST_HEAD(&adapter->vf_mvs.l);
> +
> num_vf_macvlans = hw->mac.num_rar_entries -
> (IXGBE_MAX_PF_MACVLANS + 1 + num_vfs);
> if (!num_vf_macvlans)
> @@ -36,8 +39,6 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter,
> mv_list = kcalloc(num_vf_macvlans, sizeof(struct vf_macvlans),
> GFP_KERNEL);
> if (mv_list) {
I'm not sure it it is worth it, but perhaps more conventional error
handling could be used here:
if (!mv_list)
return;
for (i = 0; i < num_vf_macvlans; i++) {
...
> - /* Initialize list of VF macvlans */
> - INIT_LIST_HEAD(&adapter->vf_mvs.l);
> for (i = 0; i < num_vf_macvlans; i++) {
> mv_list[i].vf = -1;
> mv_list[i].free = true;
> --
> 2.39.2
>
>
next prev parent reply other threads:[~2023-10-06 11:16 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-05 13:57 [Intel-wired-lan] [PATCH net] ixgbe: fix crash with empty VF macvlan list Dan Carpenter
2023-10-05 13:57 ` Dan Carpenter
2023-10-06 11:16 ` Simon Horman [this message]
2023-10-06 11:16 ` Simon Horman
2023-10-06 12:49 ` [Intel-wired-lan] " Dan Carpenter
2023-10-06 12:49 ` Dan Carpenter
2023-10-06 13:24 ` [Intel-wired-lan] " Simon Horman
2023-10-06 13:24 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZR/si/di5IbSB9Gq@kernel.org \
--to=horms@kernel.org \
--cc=anthony.l.nguyen@intel.com \
--cc=dan.carpenter@linaro.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gregory.v.rose@intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=jeffrey.t.kirsher@intel.com \
--cc=jesse.brandeburg@intel.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.