From: Gerhard Engleder <gerhard@engleder-embedded.com>
To: "Lifshits, Vitaly" <vitaly.lifshits@intel.com>,
intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
linux-pci@vger.kernel.org
Cc: anthony.l.nguyen@intel.com, przemyslaw.kitszel@intel.com,
andrew+netdev@lunn.ch, davem@davemloft.net, kuba@kernel.org,
edumazet@google.com, pabeni@redhat.com, bhelgaas@google.com,
pmenzel@molgen.mpg.de, Gerhard Engleder <eg@keba.com>
Subject: Re: [PATCH iwl-next v3] e1000e: Fix real-time violations on link up
Date: Mon, 16 Dec 2024 20:23:04 +0100 [thread overview]
Message-ID: <047738af-69af-49aa-ae91-7dbca40ae559@engleder-embedded.com> (raw)
In-Reply-To: <231abdb7-3b16-4c3c-be17-5d0e6a556f28@intel.com>
>> @@ -331,8 +331,15 @@ void e1000e_update_mc_addr_list_generic(struct
>> e1000_hw *hw,
>> }
>> /* replace the entire MTA table */
>> - for (i = hw->mac.mta_reg_count - 1; i >= 0; i--)
>> + for (i = hw->mac.mta_reg_count - 1; i >= 0; i--) {
>> E1000_WRITE_REG_ARRAY(hw, E1000_MTA, i, hw->mac.mta_shadow[i]);
>> +
>> + /* do not queue up too many posted writes to prevent increased
>> + * latency for other devices on the interconnect
>> + */
>> + if ((i % 8) == 0 && i != 0)
>> + e1e_flush();
>
>
> I would prefer to avoid adding this code to all devices, particularly
> those that don't operate on real-time systems. Implementing this code
> will introduce three additional MMIO transactions which will increase
> the driver start time in various flows (up, probe, etc.).
>
> Is there a specific reason not to use if (IS_ENABLED(CONFIG_PREEMPT_RT))
> as Andrew initially suggested?
Andrew made two suggestions: IS_ENABLED(CONFIG_PREEMPT_RT) which I used
in the first version after the RFC. And he suggested to check for a
compromise between RT and none RT performance, as some distros might
enable PREEMPT_RT in the future.
Przemek suggested to remove the PREEMPT_RT check as "this change sounds
reasonable also for the standard kernel" after the first version with
IS_ENABLED(CONFIG_PREEMPT_RT).
I used the PREEMPT_RT dependency to limit effects to real-time systems,
to not make none real-time systems slower. But I could also follow the
reasoning of Andrew and Przemek. With that said, I have no problem to
add IS_ENABLED(CONFIG_PREEMPT_RT) again.
Gerhard
next prev parent reply other threads:[~2024-12-16 19:51 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-14 19:16 [PATCH iwl-next v3] e1000e: Fix real-time violations on link up Gerhard Engleder
2024-12-16 11:16 ` Lifshits, Vitaly
2024-12-16 19:23 ` Gerhard Engleder [this message]
2024-12-18 8:36 ` Przemek Kitszel
2024-12-18 19:21 ` Gerhard Engleder
2024-12-18 15:08 ` [Intel-wired-lan] " Avigail Dahan
2024-12-18 19:21 ` Gerhard Engleder
2024-12-18 15:23 ` Alexander Lobakin
2024-12-18 19:43 ` Gerhard Engleder
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=047738af-69af-49aa-ae91-7dbca40ae559@engleder-embedded.com \
--to=gerhard@engleder-embedded.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=bhelgaas@google.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=eg@keba.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pmenzel@molgen.mpg.de \
--cc=przemyslaw.kitszel@intel.com \
--cc=vitaly.lifshits@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