Merge branch 'rhashtable-next'
authorDavid S. Miller <davem@davemloft.net>
Sat, 3 Jan 2015 19:33:03 +0000 (14:33 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sat, 3 Jan 2015 19:33:03 +0000 (14:33 -0500)
Thomas Graf says:

====================
rhashtable: Per bucket locks & deferred table resizing

Prepares for and introduces per bucket spinlocks and deferred table
resizing. This allows for parallel table mutations in different hash
buckets from atomic context. The resizing occurs in the background
in a separate worker thread while lookups, inserts, and removals can
continue.

Also modified the chain linked list to be terminated with a special
nulls marker to allow entries to move between multiple lists.

Last but not least, reintroduces lockless netlink_lookup() with
deferred Netlink socket destruction to avoid the side effect of
increased netlink_release() runtime.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>

Trivial merge