From: Brett Creeley <bcreeley@amd.com>
To: Marcin Szycik <marcin.szycik@linux.intel.com>,
intel-wired-lan@lists.osuosl.org
Cc: netdev@vger.kernel.org, maciej.fijalkowski@intel.com,
Przemek Kitszel <przemyslaw.kitszel@intel.com>,
mateusz.polchlopek@intel.com
Subject: Re: [Intel-wired-lan] [PATCH iwl-net v3 1/2] ice: Fix entering Safe Mode
Date: Tue, 24 Sep 2024 11:49:17 -0700 [thread overview]
Message-ID: <ede73dc3-fac0-4152-8b2e-27cd1b1666b0@amd.com> (raw)
In-Reply-To: <20240924100422.8010-3-marcin.szycik@linux.intel.com>
On 9/24/2024 3:04 AM, Marcin Szycik wrote:
> Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
>
>
> If DDP package is missing or corrupted, the driver should enter Safe Mode.
> Instead, an error is returned and probe fails.
>
> To fix this, don't exit init if ice_init_ddp_config() returns an error.
>
> Repro:
> * Remove or rename DDP package (/lib/firmware/intel/ice/ddp/ice.pkg)
> * Load ice
>
> Fixes: cc5776fe1832 ("ice: Enable switching default Tx scheduler topology")
> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
> Signed-off-by: Marcin Szycik <marcin.szycik@linux.intel.com>
> ---
> v3: Change ice_init_ddp_config() type to int, check return (Brett)
> v2: Change ice_init_ddp_config() type to void (Maciej)
> ---
> drivers/net/ethernet/intel/ice/ice_main.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c
> index 0f5c9d347806..7a84d3c4c305 100644
> --- a/drivers/net/ethernet/intel/ice/ice_main.c
> +++ b/drivers/net/ethernet/intel/ice/ice_main.c
> @@ -4749,14 +4749,12 @@ int ice_init_dev(struct ice_pf *pf)
> ice_init_feature_support(pf);
>
> err = ice_init_ddp_config(hw, pf);
> - if (err)
> - return err;
>
> /* if ice_init_ddp_config fails, ICE_FLAG_ADV_FEATURES bit won't be
> * set in pf->state, which will cause ice_is_safe_mode to return
> * true
> */
> - if (ice_is_safe_mode(pf)) {
> + if (err || ice_is_safe_mode(pf)) {
LGTM.
Reviewed-by: Brett Creeley <brett.creeley@amd.com>
> /* we already got function/device capabilities but these don't
> * reflect what the driver needs to do in safe mode. Instead of
> * adding conditional logic everywhere to ignore these
> --
> 2.45.0
>
next prev parent reply other threads:[~2024-09-24 18:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-24 10:04 [Intel-wired-lan] [PATCH iwl-net v3 1/2] ice: Fix entering Safe Mode Marcin Szycik
2024-09-24 10:04 ` [Intel-wired-lan] [PATCH iwl-net v3 2/2] ice: Fix netif_is_ice() in " Marcin Szycik
2024-09-24 18:48 ` Brett Creeley
2024-10-04 10:37 ` Buvaneswaran, Sujai
2024-09-24 18:49 ` Brett Creeley [this message]
2024-09-28 16:31 ` [Intel-wired-lan] [PATCH iwl-net v3 1/2] ice: Fix entering " Pucha, HimasekharX Reddy
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=ede73dc3-fac0-4152-8b2e-27cd1b1666b0@amd.com \
--to=bcreeley@amd.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=maciej.fijalkowski@intel.com \
--cc=marcin.szycik@linux.intel.com \
--cc=mateusz.polchlopek@intel.com \
--cc=netdev@vger.kernel.org \
--cc=przemyslaw.kitszel@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox