]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'tipc-next'
authorDavid S. Miller <davem@davemloft.net>
Tue, 9 Dec 2014 01:40:03 +0000 (20:40 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 9 Dec 2014 01:40:38 +0000 (20:40 -0500)
commit6fa425a14b5a08288ef1359372207d33e62d058c
treec85f9f4af8b3e830847be0de35048bbd92218147
parent9dea8721abd4a1147cc6f115ab3f1a55b35983a1
parente5a0a991bd26ef38e69a917e002419dc39151cad
Merge branch 'tipc-next'

Ying Xue says:

====================
tipc: convert name table read-write lock to RCU

Now TIPC name table is statically allocated and is protected with a
Read-Write lock. To enhance the performance of TIPC name table lookup,
we are going to involve RCU lock to protect the name table. As a
consequence, it becomes lockless to concurrently look up name table on
read side. However, before the conversion can be successfully made,
the following two things must be first done:

- change allocation way of name table from static to dynamic
- fix several incorrect locking policy issues
====================

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