gre: Wait for an RCU grace period before freeing port.
authorJesse Gross <jesse@nicira.com>
Thu, 15 Jul 2010 01:35:58 +0000 (18:35 -0700)
committerJesse Gross <jesse@nicira.com>
Thu, 15 Jul 2010 22:09:08 +0000 (15:09 -0700)
commit2848cb494620a13a64a3f862380d709c5977cecb
treeba8d8180ff6b44c0b48ebbba88dac90f35bf690e
parentf9764f6e911ab3b034b3f390f8303ce1396a4dd8
gre: Wait for an RCU grace period before freeing port.

We currently remove ports from the GRE hash table and then immediately
free the ports.  Since received packets could be using that port this
can lead to a crash (the port has already been detached from the
datapath so this can't happen for transmitted packets).  As a result
we need to wait for an RCU grace period to elapse before actually
freeing the port.

In an ideal world we would actually remove the port from the hash
table in a hypothetical gre_detach() function since this is one of
the purposes of detaching.  However, we also use the hash table to
look for collisions in the lookup criteria and don't want to allow
two identical ports to exist.  It doesn't matter though because we
aren't blocking on the freeing of resources.
datapath/vport-gre.c