* [PATCH] vxlan: Allow setting unicast address to the group address
@ 2013-04-10 8:52 Atzm Watanabe
2013-04-11 4:05 ` Cong Wang
0 siblings, 1 reply; 3+ messages in thread
From: Atzm Watanabe @ 2013-04-10 8:52 UTC (permalink / raw)
To: netdev; +Cc: David S. Miller, Stephen Hemminger
This patch allows setting unicast address to the VXLAN group address.
It allows that VXLAN can be used as peer-to-peer tunnel without
multicast.
Signed-off-by: Atzm Watanabe <atzm@stratosphere.co.jp>
---
drivers/net/vxlan.c | 14 +++-----------
1 file changed, 3 insertions(+), 11 deletions(-)
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 9a64715..9e105f9 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -106,7 +106,7 @@ struct vxlan_dev {
struct hlist_node hlist;
struct net_device *dev;
__u32 vni; /* virtual network id */
- __be32 gaddr; /* multicast group */
+ __be32 gaddr; /* group address */
__be32 saddr; /* source address */
unsigned int link; /* link to multicast over */
__u16 port_min; /* source port range */
@@ -1189,7 +1189,7 @@ static int vxlan_open(struct net_device *dev)
struct vxlan_dev *vxlan = netdev_priv(dev);
int err;
- if (vxlan->gaddr) {
+ if (IN_MULTICAST(ntohl(vxlan->gaddr))) {
err = vxlan_join_group(dev);
if (err)
return err;
@@ -1223,7 +1223,7 @@ static int vxlan_stop(struct net_device *dev)
{
struct vxlan_dev *vxlan = netdev_priv(dev);
- if (vxlan->gaddr)
+ if (IN_MULTICAST(ntohl(vxlan->gaddr)))
vxlan_leave_group(dev);
del_timer_sync(&vxlan->age_timer);
@@ -1347,14 +1347,6 @@ static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
return -ERANGE;
}
- if (data[IFLA_VXLAN_GROUP]) {
- __be32 gaddr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
- if (!IN_MULTICAST(ntohl(gaddr))) {
- pr_debug("group address is not IPv4 multicast\n");
- return -EADDRNOTAVAIL;
- }
- }
-
if (data[IFLA_VXLAN_PORT_RANGE]) {
const struct ifla_vxlan_port_range *p
= nla_data(data[IFLA_VXLAN_PORT_RANGE]);
--
1.8.1.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] vxlan: Allow setting unicast address to the group address
2013-04-10 8:52 [PATCH] vxlan: Allow setting unicast address to the group address Atzm Watanabe
@ 2013-04-11 4:05 ` Cong Wang
2013-04-11 6:27 ` Atzm Watanabe
0 siblings, 1 reply; 3+ messages in thread
From: Cong Wang @ 2013-04-11 4:05 UTC (permalink / raw)
To: netdev
On Wed, 10 Apr 2013 at 08:52 GMT, Atzm Watanabe <atzm@stratosphere.co.jp> wrote:
> This patch allows setting unicast address to the VXLAN group address.
> It allows that VXLAN can be used as peer-to-peer tunnel without
> multicast.
>
Then GROUP is confusing, please pick another name and attribute.
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] vxlan: Allow setting unicast address to the group address
2013-04-11 4:05 ` Cong Wang
@ 2013-04-11 6:27 ` Atzm Watanabe
0 siblings, 0 replies; 3+ messages in thread
From: Atzm Watanabe @ 2013-04-11 6:27 UTC (permalink / raw)
To: Cong Wang; +Cc: netdev
At Thu, 11 Apr 2013 04:05:01 +0000 (UTC),
Cong Wang wrote:
>
> On Wed, 10 Apr 2013 at 08:52 GMT, Atzm Watanabe <atzm@stratosphere.co.jp> wrote:
> > This patch allows setting unicast address to the VXLAN group address.
> > It allows that VXLAN can be used as peer-to-peer tunnel without
> > multicast.
> >
>
> Then GROUP is confusing, please pick another name and attribute.
OK, I agreed.
But simply adding another name and attribute also means that a VXLAN
interface can have multiple "last resort".
So I'll try to fix as below:
1) Replace "gaddr" by "daddr", in struct vxlan_dev.
2) Add IFLA_VXLAN_REMOTE apart from IFLA_VXLAN_GROUP.
3) If IFLA_VXLAN_REMOTE and IFLA_VXLAN_GROUP are specified at a
time, vxlan_validate() will return an error.
If you have other better ideas, please let me know.
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-11 6:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-10 8:52 [PATCH] vxlan: Allow setting unicast address to the group address Atzm Watanabe
2013-04-11 4:05 ` Cong Wang
2013-04-11 6:27 ` Atzm Watanabe
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).