* [PATCH] cifs: remove redundant test in cifs_lookup() and cifs_do_rename()
@ 2010-01-09 19:30 Roel Kluin
[not found] ` <524f69651001111353u512e9b80s46b26714e27b5130@mail.gmail.com>
0 siblings, 1 reply; 2+ messages in thread
From: Roel Kluin @ 2010-01-09 19:30 UTC (permalink / raw)
To: Steve French, linux-cifs-client, samba-technical, Andrew Morton,
LKML
rc != -EOPNOTSUPP is true as well if rc is -EINVAL.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
fs/cifs/dir.c | 2 +-
fs/cifs/inode.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Or maybe there is ==/!= or &&/|| confusion?
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 6ccf726..f5cfdd6 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -690,7 +690,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
*/
if ((rc == 0) || (rc == -ENOENT))
posix_open = true;
- else if ((rc == -EINVAL) || (rc != -EOPNOTSUPP))
+ else if (rc != -EOPNOTSUPP)
pTcon->broken_posix_open = true;
}
if (!posix_open)
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c
index cf18ee7..aec2928 100644
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@ -1264,7 +1264,7 @@ cifs_do_rename(int xid, struct dentry *from_dentry, const char *fromPath,
* source Note that cross directory moves do not work with
* rename by filehandle to various Windows servers.
*/
- if (rc == 0 || rc != -ETXTBSY)
+ if (rc != -ETXTBSY)
return rc;
/* open the file to be renamed -- we need DELETE perms */
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] cifs: remove redundant test in cifs_lookup() and cifs_do_rename()
[not found] ` <524f69651001111353u512e9b80s46b26714e27b5130@mail.gmail.com>
@ 2010-01-11 22:09 ` Roel Kluin
0 siblings, 0 replies; 2+ messages in thread
From: Roel Kluin @ 2010-01-11 22:09 UTC (permalink / raw)
To: Steve French
Cc: Steve French, linux-cifs-client, samba-technical, Andrew Morton,
LKML, Shirish Pargaonkar
rc != -EOPNOTSUPP is true as well if rc is -EINVAL.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
> At first glance this looks like a typo (probably not a serious one, but
> worth fixing)
>
> - else if ((rc == -EINVAL) || (rc != -EOPNOTSUPP))
>
> looks like it should be:
>
> + else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP))
> --
> Thanks,
>
> Steve
Yes, according to the comment it appears you're right.
Thanks
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 6ccf726..33a7427 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -690,7 +690,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
*/
if ((rc == 0) || (rc == -ENOENT))
posix_open = true;
- else if ((rc == -EINVAL) || (rc != -EOPNOTSUPP))
+ else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP))
pTcon->broken_posix_open = true;
}
if (!posix_open)
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c
index cf18ee7..aec2928 100644
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@ -1264,7 +1264,7 @@ cifs_do_rename(int xid, struct dentry *from_dentry, const char *fromPath,
* source Note that cross directory moves do not work with
* rename by filehandle to various Windows servers.
*/
- if (rc == 0 || rc != -ETXTBSY)
+ if (rc != -ETXTBSY)
return rc;
/* open the file to be renamed -- we need DELETE perms */
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-01-11 22:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-09 19:30 [PATCH] cifs: remove redundant test in cifs_lookup() and cifs_do_rename() Roel Kluin
[not found] ` <524f69651001111353u512e9b80s46b26714e27b5130@mail.gmail.com>
2010-01-11 22:09 ` Roel Kluin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox