Netdev Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Amritha Nambiar <amritha.nambiar@intel.com>
To: netdev@vger.kernel.org, kuba@kernel.org
Cc: alexander.duyck@gmail.com, jhs@mojatatu.com, jiri@resnulli.us,
xiyou.wangcong@gmail.com, sridhar.samudrala@intel.com,
amritha.nambiar@intel.com
Subject: [net-next PATCH] net: act_skbedit: Fix tc action skbedit queue_mapping
Date: Mon, 09 Aug 2021 16:41:09 -0700 [thread overview]
Message-ID: <162855246915.98025.18251604658503765863.stgit@anambiarhost.jf.intel.com> (raw)
For skbedit action queue_mapping to select the transmit queue,
queue_mapping takes the value N for tx-N (where N is the actual
queue number). However, current behavior is the following:
1. Queue selection is off by 1, tx queue N-1 is selected for
action skbedit queue_mapping N. (If the general syntax for queue
index is 1 based, i.e., action skbedit queue_mapping N would
transmit to tx queue N-1, where N >=1, then the last queue cannot
be used for transmit as this fails the upper bound check.)
2. Transmit to first queue of TCs other than TC0 selects the
next queue.
3. It is not possible to transmit to the first queue (tx-0) as
this fails the bounds check, in this case the fallback
mechanism for hash calculation is used.
Fix the call to skb_set_queue_mapping(), the code retrieving the
transmit queue uses skb_get_rx_queue() which subtracts the queue
index by 1. This makes it so that "action skbedit queue_mapping N"
will transmit to tx-N (including the first and last queue).
Signed-off-by: Amritha Nambiar <amritha.nambiar@intel.com>
Reviewed-by: Sridhar Samudrala <sridhar.samudrala@intel.com>
---
net/sched/act_skbedit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/sched/act_skbedit.c b/net/sched/act_skbedit.c
index e5f3fb8b00e3..a7bba15c74c4 100644
--- a/net/sched/act_skbedit.c
+++ b/net/sched/act_skbedit.c
@@ -59,7 +59,7 @@ static int tcf_skbedit_act(struct sk_buff *skb, const struct tc_action *a,
}
if (params->flags & SKBEDIT_F_QUEUE_MAPPING &&
skb->dev->real_num_tx_queues > params->queue_mapping)
- skb_set_queue_mapping(skb, params->queue_mapping);
+ skb_set_queue_mapping(skb, params->queue_mapping + 1);
if (params->flags & SKBEDIT_F_MARK) {
skb->mark &= ~params->mask;
skb->mark |= params->mark & params->mask;
next reply other threads:[~2021-08-09 23:36 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-09 23:41 Amritha Nambiar [this message]
2021-08-10 0:51 ` Alexander Duyck
2021-08-10 1:20 ` Nambiar, Amritha
2021-08-10 14:03 ` Alexander Duyck
2021-08-18 0:16 ` Nambiar, Amritha
2021-08-18 0:52 ` Alexander Duyck
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=162855246915.98025.18251604658503765863.stgit@anambiarhost.jf.intel.com \
--to=amritha.nambiar@intel.com \
--cc=alexander.duyck@gmail.com \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=sridhar.samudrala@intel.com \
--cc=xiyou.wangcong@gmail.com \
--subject='Re: [net-next PATCH] net: act_skbedit: Fix tc action skbedit queue_mapping' \
/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
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).