mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
RDS/IB: Use SLAB_HWCACHE_ALIGN flag for kmem_cache_create()
We are *definitely* counting cycles as closely as DaveM, so ensure hwcache alignment for our recv ring control structs. Signed-off-by: Andy Grover <andy.grover@oracle.com>
This commit is contained in:
parent
d455ab6409
commit
c20f5b9633
@ -1051,13 +1051,13 @@ int __init rds_ib_recv_init(void)
|
||||
|
||||
rds_ib_incoming_slab = kmem_cache_create("rds_ib_incoming",
|
||||
sizeof(struct rds_ib_incoming),
|
||||
0, 0, NULL);
|
||||
0, SLAB_HWCACHE_ALIGN, NULL);
|
||||
if (!rds_ib_incoming_slab)
|
||||
goto out;
|
||||
|
||||
rds_ib_frag_slab = kmem_cache_create("rds_ib_frag",
|
||||
sizeof(struct rds_page_frag),
|
||||
0, 0, NULL);
|
||||
0, SLAB_HWCACHE_ALIGN, NULL);
|
||||
if (!rds_ib_frag_slab)
|
||||
kmem_cache_destroy(rds_ib_incoming_slab);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user