From: "Tantilov, Emil S" <emil.s.tantilov@intel.com>
To: "Loktionov, Aleksandr" <aleksandr.loktionov@intel.com>,
"intel-wired-lan@lists.osuosl.org"
<intel-wired-lan@lists.osuosl.org>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"Kitszel, Przemyslaw" <przemyslaw.kitszel@intel.com>,
"Bhat, Jay" <jay.bhat@intel.com>,
"Barrera, Ivan D" <ivan.d.barrera@intel.com>,
"Zaremba, Larysa" <larysa.zaremba@intel.com>,
"Nguyen, Anthony L" <anthony.l.nguyen@intel.com>,
"andrew+netdev@lunn.ch" <andrew+netdev@lunn.ch>,
"davem@davemloft.net" <davem@davemloft.net>,
"edumazet@google.com" <edumazet@google.com>,
"kuba@kernel.org" <kuba@kernel.org>,
"pabeni@redhat.com" <pabeni@redhat.com>,
"Lobakin, Aleksander" <aleksander.lobakin@intel.com>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"Chittim, Madhu" <madhu.chittim@intel.com>,
"decot@google.com" <decot@google.com>,
"willemb@google.com" <willemb@google.com>,
"sheenamo@google.com" <sheenamo@google.com>,
"lukas@wunner.de" <lukas@wunner.de>
Subject: Re: [PATCH iwl-next v2 1/2] idpf: remove conditonal MBX deinit from idpf_vc_core_deinit()
Date: Tue, 14 Apr 2026 07:56:21 -0700 [thread overview]
Message-ID: <0316ef03-fe70-44af-8d2d-cf119c4c04ed@intel.com> (raw)
In-Reply-To: <IA3PR11MB8986EDBC27D4267AA0F48BFBE5252@IA3PR11MB8986.namprd11.prod.outlook.com>
On 4/14/2026 4:07 AM, Loktionov, Aleksandr wrote:
>
>
>> -----Original Message-----
>> From: Tantilov, Emil S <emil.s.tantilov@intel.com>
>> Sent: Tuesday, April 14, 2026 5:17 AM
>> To: intel-wired-lan@lists.osuosl.org
>> Cc: netdev@vger.kernel.org; Kitszel, Przemyslaw
>> <przemyslaw.kitszel@intel.com>; Bhat, Jay <jay.bhat@intel.com>;
>> Barrera, Ivan D <ivan.d.barrera@intel.com>; Loktionov, Aleksandr
>> <aleksandr.loktionov@intel.com>; Zaremba, Larysa
>> <larysa.zaremba@intel.com>; Nguyen, Anthony L
>> <anthony.l.nguyen@intel.com>; andrew+netdev@lunn.ch;
>> davem@davemloft.net; edumazet@google.com; kuba@kernel.org;
>> pabeni@redhat.com; Lobakin, Aleksander <aleksander.lobakin@intel.com>;
>> linux-pci@vger.kernel.org; Chittim, Madhu <madhu.chittim@intel.com>;
>> decot@google.com; willemb@google.com; sheenamo@google.com;
>> lukas@wunner.de
>> Subject: [PATCH iwl-next v2 1/2] idpf: remove conditonal MBX deinit
>> from idpf_vc_core_deinit()
> "conditional" -> "conditional"
Doh. I will make sure it is corrected.
>
> Everything else looks fine
> Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Thanks,
Emil
>
>>
>> Previously it was assumed that idpf_vc_core_deinit() is always being
>> called during reset handling, with remove being an exception. Ideally
>> the driver needs to communicate the changes to FW in all instances
>> where the MBX is not already disabled. Remove the remove_in_prog check
>> from
>> idpf_vc_core_deinit() as the MBX was already disabled while handling
>> the reset via libie_ctlq_xn_shutdown() by the service task. This is
>> also needed by the following patch, introducing PCI callbacks support.
>>
>> Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com>
>> Reviewed-by: Jay Bhat <jay.bhat@intel.com>
>> Reviewed-by: Madhu Chittim <madhu.chittim@intel.com>
>> ---
>> drivers/net/ethernet/intel/idpf/idpf_virtchnl.c | 11 +----------
>> 1 file changed, 1 insertion(+), 10 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/intel/idpf/idpf_virtchnl.c
>> b/drivers/net/ethernet/intel/idpf/idpf_virtchnl.c
>> index 129c8f6b0faa..fceaf3ec1cd4 100644
>> --- a/drivers/net/ethernet/intel/idpf/idpf_virtchnl.c
>> +++ b/drivers/net/ethernet/intel/idpf/idpf_virtchnl.c
>> @@ -3229,24 +3229,15 @@ int idpf_vc_core_init(struct idpf_adapter
>> *adapter)
>> */
>> void idpf_vc_core_deinit(struct idpf_adapter *adapter) {
>> - bool remove_in_prog;
>> -
>> if (!test_bit(IDPF_VC_CORE_INIT, adapter->flags))
>> return;
>>
>> - /* Avoid transaction timeouts when called during reset */
>> - remove_in_prog = test_bit(IDPF_REMOVE_IN_PROG, adapter->flags);
>> - if (!remove_in_prog)
>> - idpf_deinit_dflt_mbx(adapter);
>> -
>> idpf_ptp_release(adapter);
>> idpf_deinit_task(adapter);
>> idpf_idc_deinit_core_aux_device(adapter);
>> idpf_rel_rx_pt_lkup(adapter);
>> idpf_intr_rel(adapter);
>> -
>> - if (remove_in_prog)
>> - idpf_deinit_dflt_mbx(adapter);
>> + idpf_deinit_dflt_mbx(adapter);
>>
>> cancel_delayed_work_sync(&adapter->serv_task);
>>
>> --
>> 2.37.3
>
next prev parent reply other threads:[~2026-04-14 14:56 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-14 3:16 [PATCH iwl-next v2 0/2] Introduce IDPF PCI callbacks Emil Tantilov
2026-04-14 3:16 ` [PATCH iwl-next v2 1/2] idpf: remove conditonal MBX deinit from idpf_vc_core_deinit() Emil Tantilov
2026-04-14 11:07 ` Loktionov, Aleksandr
2026-04-14 14:56 ` Tantilov, Emil S [this message]
2026-04-14 3:16 ` [PATCH iwl-next v2 2/2] idpf: implement pci error handlers Emil Tantilov
2026-04-14 11:09 ` Loktionov, Aleksandr
2026-04-14 15:01 ` Tantilov, Emil S
2026-04-15 8:53 ` Loktionov, Aleksandr
2026-04-14 15:10 ` Lukas Wunner
2026-04-14 21:42 ` Tantilov, Emil S
2026-04-14 15:13 ` Lukas Wunner
2026-04-14 21:43 ` Tantilov, Emil S
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=0316ef03-fe70-44af-8d2d-cf119c4c04ed@intel.com \
--to=emil.s.tantilov@intel.com \
--cc=aleksander.lobakin@intel.com \
--cc=aleksandr.loktionov@intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=davem@davemloft.net \
--cc=decot@google.com \
--cc=edumazet@google.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=ivan.d.barrera@intel.com \
--cc=jay.bhat@intel.com \
--cc=kuba@kernel.org \
--cc=larysa.zaremba@intel.com \
--cc=linux-pci@vger.kernel.org \
--cc=lukas@wunner.de \
--cc=madhu.chittim@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=sheenamo@google.com \
--cc=willemb@google.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