Skip to content

Commit

Permalink
dlm: Make name input parameter of {,dlm_}new_lockspace() const
Browse files Browse the repository at this point in the history
| fs/gfs2/lock_dlm.c:207: warning: passing argument 1 of 'dlm_new_lockspace' discards qualifiers from pointer target type

Signed-off-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: David Teigland <[email protected]>
  • Loading branch information
geertu authored and teigland committed May 7, 2009
1 parent 413f81e commit 08ce4c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fs/dlm/lockspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ static void threads_stop(void)
dlm_astd_stop();
}

static int new_lockspace(char *name, int namelen, void **lockspace,
static int new_lockspace(const char *name, int namelen, void **lockspace,
uint32_t flags, int lvblen)
{
struct dlm_ls *ls;
Expand Down Expand Up @@ -614,7 +614,7 @@ static int new_lockspace(char *name, int namelen, void **lockspace,
return error;
}

int dlm_new_lockspace(char *name, int namelen, void **lockspace,
int dlm_new_lockspace(const char *name, int namelen, void **lockspace,
uint32_t flags, int lvblen)
{
int error = 0;
Expand Down
4 changes: 2 additions & 2 deletions include/linux/dlm.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ struct dlm_lksb {
* the cluster, the calling node joins it.
*/

int dlm_new_lockspace(char *name, int namelen, dlm_lockspace_t **lockspace,
uint32_t flags, int lvblen);
int dlm_new_lockspace(const char *name, int namelen,
dlm_lockspace_t **lockspace, uint32_t flags, int lvblen);

/*
* dlm_release_lockspace
Expand Down

0 comments on commit 08ce4c9

Please sign in to comment.