diff options
author | Alexander Aring <aahringo@redhat.com> | 2024-05-28 17:12:33 -0400 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2024-05-31 11:04:54 -0500 |
commit | f49da8c09f93ad2b220ee44091123aa9693eefde (patch) | |
tree | d04a34fe491a3f288a67a92a32aa180cac3f6b80 /fs/dlm/midcomms.h | |
parent | a2155402bf0e03a3cd2ba21a6a0d82426379d8e0 (diff) | |
download | lwn-f49da8c09f93ad2b220ee44091123aa9693eefde.tar.gz lwn-f49da8c09f93ad2b220ee44091123aa9693eefde.zip |
dlm: remove unused parameter in dlm_midcomms_addr
This patch removes an parameter which is currently not used by
dlm_midcomms_addr().
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/midcomms.h')
-rw-r--r-- | fs/dlm/midcomms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/midcomms.h b/fs/dlm/midcomms.h index 278d26fdeb2c..7fad1d170bba 100644 --- a/fs/dlm/midcomms.h +++ b/fs/dlm/midcomms.h @@ -19,7 +19,7 @@ int dlm_process_incoming_buffer(int nodeid, unsigned char *buf, int buflen); struct dlm_mhandle *dlm_midcomms_get_mhandle(int nodeid, int len, char **ppc); void dlm_midcomms_commit_mhandle(struct dlm_mhandle *mh, const void *name, int namelen); -int dlm_midcomms_addr(int nodeid, struct sockaddr_storage *addr, int len); +int dlm_midcomms_addr(int nodeid, struct sockaddr_storage *addr); void dlm_midcomms_version_wait(void); int dlm_midcomms_close(int nodeid); int dlm_midcomms_start(void); |