Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08ce4c91 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by David Teigland
Browse files

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: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent 413f81eb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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