diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-07 17:40:39 -0400 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2009-05-07 11:14:26 -0400 |
commit | 08ce4c91e44d51bb6c946f2756825a462d53c545 (patch) | |
tree | 265ece7e5f8848087ebe0c2d986234195eb5f09e /fs/dlm | |
parent | 413f81eba35d6ede9289b0c8a920c013a84fac71 (diff) |
dlm: Make name input parameter of {,dlm_}new_lockspace() const
| 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 <geert@linux-m68k.org>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lockspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c index cd8e2df3c295..82528d9b72ed 100644 --- a/fs/dlm/lockspace.c +++ b/fs/dlm/lockspace.c | |||
@@ -384,7 +384,7 @@ static void threads_stop(void) | |||
384 | dlm_astd_stop(); | 384 | dlm_astd_stop(); |
385 | } | 385 | } |
386 | 386 | ||
387 | static int new_lockspace(char *name, int namelen, void **lockspace, | 387 | static int new_lockspace(const char *name, int namelen, void **lockspace, |
388 | uint32_t flags, int lvblen) | 388 | uint32_t flags, int lvblen) |
389 | { | 389 | { |
390 | struct dlm_ls *ls; | 390 | struct dlm_ls *ls; |
@@ -614,7 +614,7 @@ static int new_lockspace(char *name, int namelen, void **lockspace, | |||
614 | return error; | 614 | return error; |
615 | } | 615 | } |
616 | 616 | ||
617 | int dlm_new_lockspace(char *name, int namelen, void **lockspace, | 617 | int dlm_new_lockspace(const char *name, int namelen, void **lockspace, |
618 | uint32_t flags, int lvblen) | 618 | uint32_t flags, int lvblen) |
619 | { | 619 | { |
620 | int error = 0; | 620 | int error = 0; |