]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/ipv4/route.c
ipv4: Add a missing rcu_assign_pointer() in routing cache.
[linux-2.6-omap-h63xx.git] / net / ipv4 / route.c
index a6d7c584f53b9a4f7493ac3b73b2e4b2602f66bf..8d23cc7efbadd4efdaa58b3a9a53eb598a97595f 100644 (file)
@@ -1109,7 +1109,12 @@ restart:
                printk("\n");
        }
 #endif
-       rt_hash_table[hash].chain = rt;
+       /*
+        * Since lookup is lockfree, we must make sure
+        * previous writes to rt are comitted to memory
+        * before making rt visible to other CPUS.
+        */
+       rcu_assign_pointer(rt_hash_table[hash].chain, rt);
        spin_unlock_bh(rt_hash_lock_addr(hash));
        *rp = rt;
        return 0;