This patch constify some ls name parameter which are used read only in ls_create() and ls_find(). --- dlm_controld/dlm_daemon.h | 2 +- dlm_controld/main.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlm_controld/dlm_daemon.h b/dlm_controld/dlm_daemon.h index b829e0de..f0bad90f 100644 --- a/dlm_controld/dlm_daemon.h +++ b/dlm_controld/dlm_daemon.h @@ -479,7 +479,7 @@ int client_add(int fd, void (*workfn)(int ci), void (*deadfn)(int ci)); int client_fd(int ci); void client_ignore(int ci, int fd); void client_back(int ci, int fd); -struct lockspace *find_ls(char *name); +struct lockspace *find_ls(const char *name); struct lockspace *find_ls_id(uint32_t id); const char *dlm_mode_str(int mode); void cluster_dead(int ci); diff --git a/dlm_controld/main.c b/dlm_controld/main.c index 2c534a1e..31489d54 100644 --- a/dlm_controld/main.c +++ b/dlm_controld/main.c @@ -537,7 +537,7 @@ static int check_run_operation(char *uuid_str, uint32_t flags, struct dlmc_run_c return 0; } -static struct lockspace *create_ls(char *name) +static struct lockspace *create_ls(const char *name) { struct lockspace *ls; @@ -562,7 +562,7 @@ static struct lockspace *create_ls(char *name) return ls; } -struct lockspace *find_ls(char *name) +struct lockspace *find_ls(const char *name) { struct lockspace *ls; -- 2.31.1