Commit cbd071b5 authored by David Howells's avatar David Howells Committed by Anna Schumaker
Browse files

NFS: Deindent nfs_fs_context_parse_option()



Deindent nfs_fs_context_parse_option().

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent f8ee01e3
Loading
Loading
Loading
Loading
+367 −372
Original line number Diff line number Diff line
@@ -499,20 +499,16 @@ static int nfs_get_option_ul_bound(substring_t args[], unsigned long *option,
 * Parse a single mount option in "key[=val]" form.
 */
static int nfs_fs_context_parse_option(struct nfs_fs_context *ctx, char *p)
{
	char *string;
	int rc;

{
	substring_t args[MAX_OPT_ARGS];
	unsigned long option;
		int token;
	char *string;
	int token, rc;

	dfprintk(MOUNT, "NFS:   parsing nfs mount option '%s'\n", p);

	token = match_token(p, nfs_mount_option_tokens, args);
	switch (token) {

		/*
		 * boolean options:  foo/nofoo
		 */
@@ -904,7 +900,6 @@ static int nfs_fs_context_parse_option(struct nfs_fs_context *ctx, char *p)
			 "'%s'\n", p);
		return -EINVAL;
	}
	}

	return 0;