From: David Ahern <dsahern@gmail.com>
To: Maor Gottlieb <maorg@mellanox.com>,
davem@davemloft.net, jgg@mellanox.com, dledford@redhat.com,
j.vosburgh@gmail.com, vfalico@gmail.com, andy@greyhouse.net,
kuba@kernel.org, jiri@mellanox.com, dsahern@kernel.org
Cc: leonro@mellanox.com, saeedm@mellanox.com,
linux-rdma@vger.kernel.org, netdev@vger.kernel.org,
alexr@mellanox.com
Subject: Re: [PATCH V5 mlx5-next 01/16] net/core: Introduce netdev_get_xmit_slave
Date: Sat, 25 Apr 2020 10:19:12 -0600 [thread overview]
Message-ID: <3d68acb4-b20d-ac02-1499-e4279abb9f34@gmail.com> (raw)
In-Reply-To: <20200423125555.21759-2-maorg@mellanox.com>
On 4/23/20 6:55 AM, Maor Gottlieb wrote:
> Add new ndo to get the xmit slave of master device.
> Caller should call dev_put() when it no longer works with
> slave netdevice.
description needs to be updated.
> User can ask to get the xmit slave assume all the slaves can
> transmit by set all_slaves arg to true.
>
> Signed-off-by: Maor Gottlieb <maorg@mellanox.com>
> ---
> include/linux/netdevice.h | 6 ++++++
> net/core/dev.c | 22 ++++++++++++++++++++++
> 2 files changed, 28 insertions(+)
>
> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
> index 130a668049ab..d1206f08e099 100644
> --- a/include/linux/netdevice.h
> +++ b/include/linux/netdevice.h
> @@ -1389,6 +1389,9 @@ struct net_device_ops {
> struct netlink_ext_ack *extack);
> int (*ndo_del_slave)(struct net_device *dev,
> struct net_device *slave_dev);
> + struct net_device* (*ndo_get_xmit_slave)(struct net_device *dev,
> + struct sk_buff *skb,
> + bool all_slaves);
documentation above struct net_device_ops { }; needs to be updated.
> netdev_features_t (*ndo_fix_features)(struct net_device *dev,
> netdev_features_t features);
> int (*ndo_set_features)(struct net_device *dev,
> @@ -2731,6 +2734,9 @@ void netdev_freemem(struct net_device *dev);
> void synchronize_net(void);
> int init_dummy_netdev(struct net_device *dev);
>
> +struct net_device *netdev_get_xmit_slave(struct net_device *dev,
> + struct sk_buff *skb,
> + bool all_slaves);
> struct net_device *dev_get_by_index(struct net *net, int ifindex);
> struct net_device *__dev_get_by_index(struct net *net, int ifindex);
> struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex);
> diff --git a/net/core/dev.c b/net/core/dev.c
> index 9c9e763bfe0e..e6c10980abfd 100644
> --- a/net/core/dev.c
> +++ b/net/core/dev.c
> @@ -7785,6 +7785,28 @@ void netdev_bonding_info_change(struct net_device *dev,
> }
> EXPORT_SYMBOL(netdev_bonding_info_change);
>
> +/**
> + * netdev_get_xmit_slave - Get the xmit slave of master device
> + * @skb: The packet
> + * @all_slaves: assume all the slaves are active
> + *
> + * The reference counters are not incremented so the caller must be
> + * careful with locks. The caller must hold RCU lock.
> + * %NULL is returned if no slave is found.
> + */
> +
> +struct net_device *netdev_get_xmit_slave(struct net_device *dev,
> + struct sk_buff *skb,
> + bool all_slaves)
> +{
> + const struct net_device_ops *ops = dev->netdev_ops;
> +
> + if (!ops->ndo_get_xmit_slave)
> + return NULL;
> + return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
> +}
> +EXPORT_SYMBOL(netdev_get_xmit_slave);
> +
> static void netdev_adjacent_add_links(struct net_device *dev)
> {
> struct netdev_adjacent *iter;
>
next prev parent reply other threads:[~2020-04-25 16:19 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-23 12:55 [PATCH V5 mlx5-next 00/15] Add support to get xmit slave Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 01/16] net/core: Introduce netdev_get_xmit_slave Maor Gottlieb
2020-04-23 14:46 ` Jiri Pirko
2020-04-25 16:19 ` David Ahern [this message]
2020-04-23 12:55 ` [PATCH V5 mlx5-next 02/16] bonding: Export skip slave logic to function Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 03/16] bonding: Rename slave_arr to usable_slaves Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 04/16] bonding/alb: Add helper functions to get the xmit slave Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 05/16] bonding: Add helper function to get the xmit slave based on hash Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 06/16] bonding: Add helper function to get the xmit slave in rr mode Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 07/16] bonding: Add function to get the xmit slave in active-backup mode Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 08/16] bonding: Add array of all slaves Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 09/16] bonding: Implement ndo_get_xmit_slave Maor Gottlieb
2020-04-23 14:47 ` Jiri Pirko
2020-04-23 12:55 ` [PATCH V5 mlx5-next 10/16] RDMA: Group create AH arguments in struct Maor Gottlieb
2020-04-25 22:40 ` Jason Gunthorpe
2020-04-23 12:55 ` [PATCH V5 mlx5-next 11/16] RDMA/core: Add LAG functionality Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 12/16] RDMA/core: Get xmit slave for LAG Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 13/16] net/mlx5: Change lag mutex lock to spin lock Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 14/16] net/mlx5: Add support to get lag physical port Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 15/16] RDMA/mlx5: Refactor affinity related code Maor Gottlieb
2020-04-23 12:55 ` [PATCH V5 mlx5-next 16/16] RDMA/mlx5: Set lag tx affinity according to slave Maor Gottlieb
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=3d68acb4-b20d-ac02-1499-e4279abb9f34@gmail.com \
--to=dsahern@gmail.com \
--cc=alexr@mellanox.com \
--cc=andy@greyhouse.net \
--cc=davem@davemloft.net \
--cc=dledford@redhat.com \
--cc=dsahern@kernel.org \
--cc=j.vosburgh@gmail.com \
--cc=jgg@mellanox.com \
--cc=jiri@mellanox.com \
--cc=kuba@kernel.org \
--cc=leonro@mellanox.com \
--cc=linux-rdma@vger.kernel.org \
--cc=maorg@mellanox.com \
--cc=netdev@vger.kernel.org \
--cc=saeedm@mellanox.com \
--cc=vfalico@gmail.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).