dpif-linux: Recycle leaked ports.
authorEthan Jackson <ethan@nicira.com>
Fri, 29 Apr 2011 20:12:19 +0000 (13:12 -0700)
committerEthan Jackson <ethan@nicira.com>
Fri, 29 Apr 2011 23:06:31 +0000 (16:06 -0700)
commit8522b383863cbc8f0d530fc7d44c0643dcac541d
tree95c19a8bec36a4c2928b5515f478370884268105
parent0ee17a3ba726ec23cc49f2c40da4b084084dbdb7
dpif-linux: Recycle leaked ports.

When ports are deleted from the datapath they need to be added to
an LRU list maintained in dpif-linux so they may be reallocated.
When using vswitchd to delete the ports this happens automatically.
However, if a port is deleted directly from the datapath it is
never reclaimed by dpif-linux.  If this happens often, eventually
no ports will be available for allocation and dpif-linux will fall
back to using the old, kernel implemented, allocation strategy.

This commit fixes the problem by automatically reclaiming ports
missing from the datapath whenever the list of ports in the
datapath is dumped.

Bug #2140.
lib/dpif-linux.c