Avoid inserting duplicate iptables rules when restarting vswitch.
authorBen Pfaff <blp@nicira.com>
Tue, 21 Jun 2011 23:40:44 +0000 (16:40 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 21 Jun 2011 23:40:44 +0000 (16:40 -0700)
commitb3a375f242c70ff85c30f84ce311628de4a6f022
treec1175ca7ada5dbd515797c0b3a88dd225e7fd017
parentbb9f6963579816c0209a2a7d5510689a043dd965
Avoid inserting duplicate iptables rules when restarting vswitch.

On startup, some OVS initscripts insert an iptables rule to allow GRE
traffic (because GRE support is an important OVS feature).  I noticed that,
each time I restarted OVS, this added another GRE-related rule to the
iptables chain.  This is wasteful, because each additional rule increases
the time it takes to process a packet in the IP stack.

This commit avoids the problem by inserting an iptables rule when there
isn't already an appropriate rule.  It also avoids inserting an iptables
rule if the iptables policy is ACCEPT, meaning that packets are accepted
by default; in such a case, if the GRE packet would be dropped, it is
because the system administrator made that decision explicitly.

Signed-off-by: Ben Pfaff <blp@nicira.com>
debian/openvswitch-switch.init
utilities/ovs-ctl.8
utilities/ovs-ctl.in
xenserver/etc_init.d_openvswitch