rds: Use RCU for the bind lookup searches
The RDS bind lookups are somewhat expensive in terms of CPU time and locking overhead. This commit changes them into a faster RCU based hash tree instead of the rbtrees they were using before. On large NUMA systems it is a significant improvement. Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
@ -452,7 +452,7 @@ struct rds_sock {
|
||||
* bound_addr used for both incoming and outgoing, no INADDR_ANY
|
||||
* support.
|
||||
*/
|
||||
struct rb_node rs_bound_node;
|
||||
struct hlist_node rs_bound_node;
|
||||
__be32 rs_bound_addr;
|
||||
__be32 rs_conn_addr;
|
||||
__be16 rs_bound_port;
|
||||
|
Reference in New Issue
Block a user