.. | .. |
---|
48 | 48 | * @head_offset: Offset of rhash_head in struct to be hashed |
---|
49 | 49 | * @max_size: Maximum size while expanding |
---|
50 | 50 | * @min_size: Minimum size while shrinking |
---|
51 | | - * @locks_mul: Number of bucket locks to allocate per cpu (default: 32) |
---|
52 | 51 | * @automatic_shrinking: Enable automatic shrinking of tables |
---|
53 | 52 | * @hashfn: Hash function (default: jhash2 if !(key_len % 4), or jhash) |
---|
54 | 53 | * @obj_hashfn: Function to hash object |
---|
.. | .. |
---|
62 | 61 | unsigned int max_size; |
---|
63 | 62 | u16 min_size; |
---|
64 | 63 | bool automatic_shrinking; |
---|
65 | | - u8 locks_mul; |
---|
66 | 64 | rht_hashfn_t hashfn; |
---|
67 | 65 | rht_obj_hashfn_t obj_hashfn; |
---|
68 | 66 | rht_obj_cmpfn_t obj_cmpfn; |
---|