From: ebiederm@xmission.com (Eric W. Biederman)
To: Jiri Pirko <jiri@resnulli.us>
Cc: netdev@vger.kernel.org, davem@davemloft.net, pshelar@nicira.com,
cwang@twopensource.com, nicolas.dichtel@6wind.com,
david@gibson.dropbear.id.au, sfeldma@cumulusnetworks.com,
sucheta.chakraborty@qlogic.com, stephen@networkplumber.org
Subject: Re: [patch net-next 2/2] openvswitch: introduce rtnl ops stub
Date: Wed, 25 Jun 2014 09:02:42 -0700 [thread overview]
Message-ID: <87fvitvuxp.fsf@x220.int.ebiederm.org> (raw)
In-Reply-To: <1403699280-12837-2-git-send-email-jiri@resnulli.us> (Jiri Pirko's message of "Wed, 25 Jun 2014 14:28:00 +0200")
Jiri Pirko <jiri@resnulli.us> writes:
> This stub now allows userspace to see IFLA_INFO_KIND for ovs master and
> IFLA_INFO_SLAVE_KIND for slave.
I am puzzled why you don't implement full rtnl_link_operations support.
If all you want is to report which kind of driver you have I suspect
implementing ethtool_ops.get_drvinfo is a much better fit.
Eric
> Signed-off-by: Jiri Pirko <jiri@resnulli.us>
> ---
> net/openvswitch/datapath.c | 9 ++++++++-
> net/openvswitch/vport-internal_dev.c | 16 ++++++++++++++++
> net/openvswitch/vport-internal_dev.h | 2 ++
> 3 files changed, 26 insertions(+), 1 deletion(-)
>
> diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
> index 0d407bc..fe95b6c 100644
> --- a/net/openvswitch/datapath.c
> +++ b/net/openvswitch/datapath.c
> @@ -2054,10 +2054,14 @@ static int __init dp_init(void)
>
> pr_info("Open vSwitch switching datapath\n");
>
> - err = ovs_flow_init();
> + err = ovs_internal_dev_rtnl_link_register();
> if (err)
> goto error;
>
> + err = ovs_flow_init();
> + if (err)
> + goto error_unreg_rtnl_link;
> +
> err = ovs_vport_init();
> if (err)
> goto error_flow_exit;
> @@ -2084,6 +2088,8 @@ error_vport_exit:
> ovs_vport_exit();
> error_flow_exit:
> ovs_flow_exit();
> +error_unreg_rtnl_link:
> + ovs_internal_dev_rtnl_link_unregister();
> error:
> return err;
> }
> @@ -2096,6 +2102,7 @@ static void dp_cleanup(void)
> rcu_barrier();
> ovs_vport_exit();
> ovs_flow_exit();
> + ovs_internal_dev_rtnl_link_unregister();
> }
>
> module_init(dp_init);
> diff --git a/net/openvswitch/vport-internal_dev.c b/net/openvswitch/vport-internal_dev.c
> index 789af92..295471a 100644
> --- a/net/openvswitch/vport-internal_dev.c
> +++ b/net/openvswitch/vport-internal_dev.c
> @@ -26,6 +26,7 @@
>
> #include <net/dst.h>
> #include <net/xfrm.h>
> +#include <net/rtnetlink.h>
>
> #include "datapath.h"
> #include "vport-internal_dev.h"
> @@ -121,6 +122,10 @@ static const struct net_device_ops internal_dev_netdev_ops = {
> .ndo_get_stats64 = internal_dev_get_stats,
> };
>
> +static struct rtnl_link_ops internal_dev_link_ops __read_mostly = {
> + .kind = "openvswitch",
> +};
> +
> static void do_setup(struct net_device *netdev)
> {
> ether_setup(netdev);
> @@ -131,6 +136,7 @@ static void do_setup(struct net_device *netdev)
> netdev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
> netdev->destructor = internal_dev_destructor;
> netdev->ethtool_ops = &internal_dev_ethtool_ops;
> + netdev->rtnl_link_ops = &internal_dev_link_ops;
> netdev->tx_queue_len = 0;
>
> netdev->features = NETIF_F_LLTX | NETIF_F_SG | NETIF_F_FRAGLIST |
> @@ -248,3 +254,13 @@ struct vport *ovs_internal_dev_get_vport(struct net_device *netdev)
>
> return internal_dev_priv(netdev)->vport;
> }
> +
> +int ovs_internal_dev_rtnl_link_register(void)
> +{
> + return rtnl_link_register(&internal_dev_link_ops);
> +}
> +
> +void ovs_internal_dev_rtnl_link_unregister(void)
> +{
> + rtnl_link_unregister(&internal_dev_link_ops);
> +}
> diff --git a/net/openvswitch/vport-internal_dev.h b/net/openvswitch/vport-internal_dev.h
> index 9a7d30e..1b179a1 100644
> --- a/net/openvswitch/vport-internal_dev.h
> +++ b/net/openvswitch/vport-internal_dev.h
> @@ -24,5 +24,7 @@
>
> int ovs_is_internal_dev(const struct net_device *);
> struct vport *ovs_internal_dev_get_vport(struct net_device *);
> +int ovs_internal_dev_rtnl_link_register(void);
> +void ovs_internal_dev_rtnl_link_unregister(void);
>
> #endif /* vport-internal_dev.h */
next prev parent reply other threads:[~2014-06-25 16:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-25 12:27 [patch net-next 1/2] rtnetlink: allow to register ops without ops->setup set Jiri Pirko
2014-06-25 12:28 ` [patch net-next 2/2] openvswitch: introduce rtnl ops stub Jiri Pirko
2014-06-25 16:02 ` Eric W. Biederman [this message]
2014-06-25 16:35 ` Jiri Pirko
2014-06-25 17:13 ` Eric W. Biederman
2014-06-26 7:39 ` Jiri Pirko
2014-06-25 15:55 ` [patch net-next 1/2] rtnetlink: allow to register ops without ops->setup set Eric W. Biederman
2014-06-25 16:31 ` Jiri Pirko
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=87fvitvuxp.fsf@x220.int.ebiederm.org \
--to=ebiederm@xmission.com \
--cc=cwang@twopensource.com \
--cc=davem@davemloft.net \
--cc=david@gibson.dropbear.id.au \
--cc=jiri@resnulli.us \
--cc=netdev@vger.kernel.org \
--cc=nicolas.dichtel@6wind.com \
--cc=pshelar@nicira.com \
--cc=sfeldma@cumulusnetworks.com \
--cc=stephen@networkplumber.org \
--cc=sucheta.chakraborty@qlogic.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.