netdev-vport: Checks tunnel status change when route-table is reset.
authorAlex Wang <alexw@nicira.com>
Thu, 1 May 2014 17:53:48 +0000 (10:53 -0700)
committerAlex Wang <alexw@nicira.com>
Fri, 2 May 2014 21:29:18 +0000 (14:29 -0700)
commit41ca1e0afb4b261a217c9fdaf672ef606e8434f9
tree5b899828f5b3d3c98e1651e48ec57df69440acea
parent12eb035b810ff9d537d6ff9f1eb8ad5564c1f644
netdev-vport: Checks tunnel status change when route-table is reset.

Commit 3e912ffcbb (netdev: Add 'change_seq' back to netdev.) added per-
netdev change number for indicating status change.  Future commits used
this change number to optimize the netdev status update to database.
However, the work also introduced the bug in the following scenario:

- assume interface eth0 has address 1.2.3.4, eth1 has adddress 10.0.0.1.
- assume tunnel port p1 is set with remote_ip=10.0.0.5.
- after setup, 'ovs-vsctl list interface p1 status' should show the
  'tunnel_egress_iface="eth1"'.
- now if the address of eth1 is change to 0 via 'ifconfig eth1 0'.
- expectedly, after change, 'ovs-vsctl list interface p1 status' should
  show the 'tunnel_egress_iface="eth0"'

However, 'tunnel_egress_iface' will not be updated on current master.
This is in that, the 'netdev-vport' module corresponding to p1 does
not react to routing related changes.

To fix the bug, this commit adds a change sequence number in the route-
table module and makes netdev-vport check the sequence number for
tunnel status update.

Bug #1240626

Signed-off-by: Alex Wang <alexw@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/netdev-provider.h
lib/netdev-vport.c
lib/netdev-vport.h
lib/netdev.c
lib/route-table-bsd.c
lib/route-table-stub.c
lib/route-table.c
lib/route-table.h