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)
commit7beceebf5b9d14e333ab6025a6feccdc8e765225
tree8c1d2761c3959356151eed7bb677df633d64c0dd
parentdd9553988879a3ff71a86323b88409e7631c4e5d
parent21e4902aea80ef35afc00ee8d2abdea4f519b7f7
Merge branch 'rhashtable-next'

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>