diff options
author | Steve French <sfrench@us.ibm.com> | 2007-11-16 23:05:52 (GMT) |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-11-16 23:05:52 (GMT) |
commit | 8840dee9dc53883883c321d2811e9f87700d9350 (patch) | |
tree | b1d66f2312f730bcda50d2aa857ff389d93ac4a7 /fs/cifs/file.c | |
parent | d6c2e4d02b72d8ae63784bdc57cfa285128de211 (diff) | |
download | linux-8840dee9dc53883883c321d2811e9f87700d9350.tar.xz |
[CIFS] minor checkpatch cleanup
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 82326d2..8025641 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -1087,11 +1087,11 @@ refind_writable: read_unlock(&GlobalSMBSeslock); return open_file; } - + read_unlock(&GlobalSMBSeslock); /* Had to unlock since following call can block */ rc = cifs_reopen_file(open_file->pfile, FALSE); - if (!rc) { + if (!rc) { if (!open_file->closePend) return open_file; else { /* start over in case this was deleted */ @@ -1114,7 +1114,7 @@ refind_writable: /* can not use this handle, no write pending on this one after all */ atomic_dec(&open_file->wrtPending); - + if (open_file->closePend) /* list could have changed */ goto refind_writable; /* else we simply continue to the next entry. Thus |