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

Commit 79a58d1f authored by Steve French's avatar Steve French
Browse files

[CIFS] whitespace cleanup



checkpatch.pl redux

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent d20acd09
Loading
Loading
Loading
Loading
+113 −113
Original line number Diff line number Diff line
/*
 *   fs/cifs/transport.c
 *
 *   Copyright (C) International Business Machines  Corp., 2002,2005
 *   Copyright (C) International Business Machines  Corp., 2002,2007
 *   Author(s): Steve French (sfrench@us.ibm.com)
 *   Jeremy Allison (jra@samba.org) 2006.
 *
@@ -333,8 +333,8 @@ static int wait_for_free_request(struct cifsSesInfo *ses, const int long_op)
					return -ENOENT;
				}

				/* can not count locking commands against total since
				   they are allowed to block on server */
				/* can not count locking commands against total
				   as they are allowed to block on server */
					
				/* update # of requests on the wire to server */
				if (long_op < 3)
+115 −111
Original line number Diff line number Diff line
/*
 *   fs/cifs/xattr.c
 *
 *   Copyright (c) International Business Machines  Corp., 2003
 *   Copyright (c) International Business Machines  Corp., 2003, 2007
 *   Author(s): Steve French (sfrench@us.ibm.com)
 *
 *   This library is free software; you can redistribute it and/or modify
@@ -71,7 +71,9 @@ int cifs_removexattr(struct dentry * direntry, const char * ea_name)
		cFYI(1, ("Null xattr names not supported"));
	} else if (strncmp(ea_name, CIFS_XATTR_USER_PREFIX, 5)
		&& (strncmp(ea_name, CIFS_XATTR_OS2_PREFIX, 4))) {
		cFYI(1,("illegal xattr namespace %s (only user namespace supported)",ea_name));
		cFYI(1,
		    ("illegal xattr request %s (only user namespace supported)",
			ea_name));
		/* BB what if no namespace prefix? */
		/* Should we just pass them to server, except for
		system and perhaps security prefixes? */
@@ -168,7 +170,8 @@ int cifs_setxattr(struct dentry * direntry, const char * ea_name,
#else
			cFYI(1, ("set POSIX ACL not supported"));
#endif
		} else if(strncmp(ea_name,POSIX_ACL_XATTR_DEFAULT,strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
		} else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT,
				   strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
#ifdef CONFIG_CIFS_POSIX
			if (sb->s_flags & MS_POSIXACL)
				rc = CIFSSMBSetPosixACL(xid, pTcon, full_path,
@@ -272,7 +275,6 @@ ssize_t cifs_getxattr(struct dentry * direntry, const char * ea_name,
				CIFSSMBClose(xid, pTcon, fid);
			}
		} */  /* BB enable after fixing up return data */
                  		
#else
		cFYI(1, ("query POSIX ACL not supported yet"));
#endif /* CONFIG_CIFS_POSIX */
@@ -295,7 +297,9 @@ ssize_t cifs_getxattr(struct dentry * direntry, const char * ea_name,
		  CIFS_XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) == 0) {
		cFYI(1, ("Security xattr namespace not supported yet"));
	} else {
		cFYI(1,("illegal xattr name request %s (only user namespace supported)",ea_name));
		cFYI(1,
		    ("illegal xattr request %s (only user namespace supported)",
			ea_name));
	}

	/* We could add an additional check for streams ie
+4 −4

File changed.

Contains only whitespace changes.