From: Jakub Kicinski <kuba@kernel.org>
To: Nick Child <nnac123@linux.ibm.com>
Cc: netdev@vger.kernel.org, bjking1@linux.ibm.com,
haren@linux.ibm.com, ricklind@us.ibm.com
Subject: Re: [PATCH net-next] ibmvnic: Toggle between queue types in affinity mapping
Date: Wed, 25 Jan 2023 10:14:23 -0800 [thread overview]
Message-ID: <20230125101423.7b9590fe@kernel.org> (raw)
In-Reply-To: <0bf3b3e3-8927-bcdd-9600-4f9133d4d81d@linux.ibm.com>
On Wed, 25 Jan 2023 10:55:20 -0600 Nick Child wrote:
> On 1/24/23 20:39, Jakub Kicinski wrote:
> > On Mon, 23 Jan 2023 16:17:27 -0600 Nick Child wrote:
> >> A more optimal algorithm would balance the number RX and TX IRQ's across
> >> the physical cores. Therefore, to increase performance, distribute RX and
> >> TX IRQs across cores by alternating between assigning IRQs for RX and TX
> >> queues to CPUs.
> >> With a system with 64 CPUs and 32 queues, this results in the following
> >> pattern (binding is done in reverse order for readable code):
> >>
> >> IRQ type | CPU number
> >> -----------------------
> >> TX15 | 0-1
> >> RX15 | 2-3
> >> TX14 | 4-5
> >> RX14 | 6-7
> >
> > Seems sensible but why did you invert the order? To save LoC?
>
> Thanks for checking this out Jakub.
>
> Correct, the effect on performance is the same and IMO the algorithm
> is more readable. Less so about minimizing lines and more about
> making the code understandable for the next dev.
I spend way too much time explaining IRQ pinning to developers at my
"day job" :( Stuff like threaded NAPI means that more and more people
interact with it. So I think having a more easily understandable mapping
is worth the extra complexity in the driver. By which I mean:
Tx0 -> 0-1
Rx0 -> 2-3
Tx1 -> 4-5
IOW Qn -> n*4+is_rx*2 - n*4+is_rx*2+1
next prev parent reply other threads:[~2023-01-25 18:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-23 22:17 [PATCH net-next] ibmvnic: Toggle between queue types in affinity mapping Nick Child
2023-01-25 2:39 ` Jakub Kicinski
2023-01-25 16:55 ` Nick Child
2023-01-25 18:14 ` Jakub Kicinski [this message]
2023-01-25 19:16 ` Rick Lindsley
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=20230125101423.7b9590fe@kernel.org \
--to=kuba@kernel.org \
--cc=bjking1@linux.ibm.com \
--cc=haren@linux.ibm.com \
--cc=netdev@vger.kernel.org \
--cc=nnac123@linux.ibm.com \
--cc=ricklind@us.ibm.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;
as well as URLs for NNTP newsgroup(s).