From: Vladislav Yasevich <vyasevich@gmail.com>
To: netdev@vger.kernel.org
Cc: jasowang@redhat.com, mst@redhat.com,
Vladislav Yasevich <vyasevic@redhat.com>
Subject: [RFC PATCH net-next 2/3] macvlan: add queue selection functionality
Date: Sun, 7 Feb 2016 22:14:55 -0500 [thread overview]
Message-ID: <1454901296-9915-3-git-send-email-vyasevic@redhat.com> (raw)
In-Reply-To: <1454901296-9915-1-git-send-email-vyasevic@redhat.com>
This patch adds a simple queue selection function to macvlan
layer. In most cases, this will just use the standard fallback
fuction, but when rx-queue has been recoreded we'll try to use
that value.
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
---
drivers/net/macvlan.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c
index 94e6888..213d587 100644
--- a/drivers/net/macvlan.c
+++ b/drivers/net/macvlan.c
@@ -1018,6 +1018,25 @@ static int macvlan_dev_get_iflink(const struct net_device *dev)
return vlan->lowerdev->ifindex;
}
+static u16 macvlan_select_queue(struct net_device *dev,
+ struct sk_buff *skb,
+ void *accel_priv,
+ select_queue_fallback_t fallback)
+{
+ u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
+
+ if (!txq)
+ return fallback(dev, skb);
+
+ if (unlikely(txq >= dev->real_num_tx_queues)) {
+ do {
+ txq -= dev->real_num_tx_queues;
+ } while (txq >= dev->real_num_tx_queues);
+ }
+ return txq;
+}
+
+
static const struct ethtool_ops macvlan_ethtool_ops = {
.get_link = ethtool_op_get_link,
.get_settings = macvlan_ethtool_get_settings,
@@ -1048,6 +1067,7 @@ static const struct net_device_ops macvlan_netdev_ops = {
.ndo_netpoll_setup = macvlan_dev_netpoll_setup,
.ndo_netpoll_cleanup = macvlan_dev_netpoll_cleanup,
#endif
+ .ndo_select_queue = macvlan_select_queue,
.ndo_get_iflink = macvlan_dev_get_iflink,
.ndo_features_check = passthru_features_check,
};
--
2.1.0
next prev parent reply other threads:[~2016-02-08 3:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-08 3:14 [RFC PATCH net-next 0/3] Extend macvtap with multiple qdiscs Vladislav Yasevich
2016-02-08 3:14 ` [RFC PATCH net-next 1/3] macvtap: mutiple qdiscs support Vladislav Yasevich
2016-02-08 3:14 ` Vladislav Yasevich [this message]
2016-02-08 3:45 ` [RFC PATCH net-next 2/3] macvlan: add queue selection functionality Eric Dumazet
2016-02-09 4:30 ` Pankaj Gupta
2016-02-08 3:14 ` [RFC PATCH net-next 3/3] macvtap: Record the rx queue based on the user tap queue Vladislav Yasevich
2016-02-23 2:38 ` [RFC PATCH net-next 0/3] Extend macvtap with multiple qdiscs Jason Wang
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=1454901296-9915-3-git-send-email-vyasevic@redhat.com \
--to=vyasevich@gmail.com \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=vyasevic@redhat.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).