diff options
author | Alexander Aring <aahringo@redhat.com> | 2024-04-15 20:39:39 +0200 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2024-04-16 21:34:39 +0200 |
commit | 6c648035cbe75d78836f6d7d2fdd9d996048a66b (patch) | |
tree | e062c9951814bb7f3fcac71332d1ac54ff383e06 /fs/dlm/config.h | |
parent | dlm: add rsb lists for iteration (diff) | |
download | linux-6c648035cbe75d78836f6d7d2fdd9d996048a66b.tar.xz linux-6c648035cbe75d78836f6d7d2fdd9d996048a66b.zip |
dlm: switch to use rhashtable for rsbs
Replace our own hash table with the more advanced rhashtable
for keeping rsb structs.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/config.h')
-rw-r--r-- | fs/dlm/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/dlm/config.h b/fs/dlm/config.h index 4c91fcca0fd4..ed237d910208 100644 --- a/fs/dlm/config.h +++ b/fs/dlm/config.h @@ -21,6 +21,8 @@ struct dlm_config_node { uint32_t comm_seq; }; +extern const struct rhashtable_params dlm_rhash_rsb_params; + #define DLM_MAX_ADDR_COUNT 3 #define DLM_PROTO_TCP 0 |