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 /include/linux/dlm.h | |
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 'include/linux/dlm.h')
-rw-r--r-- | include/linux/dlm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/dlm.h b/include/linux/dlm.h index b9cd38603fd8..0b3518c42356 100644 --- a/include/linux/dlm.h +++ b/include/linux/dlm.h | |||
@@ -81,8 +81,8 @@ struct dlm_lksb { | |||
81 | * the cluster, the calling node joins it. | 81 | * the cluster, the calling node joins it. |
82 | */ | 82 | */ |
83 | 83 | ||
84 | int dlm_new_lockspace(char *name, int namelen, dlm_lockspace_t **lockspace, | 84 | int dlm_new_lockspace(const char *name, int namelen, |
85 | uint32_t flags, int lvblen); | 85 | dlm_lockspace_t **lockspace, uint32_t flags, int lvblen); |
86 | 86 | ||
87 | /* | 87 | /* |
88 | * dlm_release_lockspace | 88 | * dlm_release_lockspace |