diff options
author | Pavel Shilovsky <[email protected]> | 2014-08-26 19:04:44 +0400 |
---|---|---|
committer | Steve French <[email protected]> | 2014-08-25 16:44:28 -0500 |
commit | f736906a7669a77cf8cabdcbcf1dc8cb694e12ef (patch) | |
tree | 245524ab7b74c560b777b0589f0af9e2f66ef066 | |
parent | a07d322059db66b84c9eb4f98959df468e88b34b (diff) |
CIFS: Fix wrong restart readdir for SMB1
The existing code calls server->ops->close() that is not
right. This causes XFS test generic/310 to fail. Fix this
by using server->ops->closedir() function.
Cc: <[email protected]> # v3.7+
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Pavel Shilovsky <[email protected]>
Signed-off-by: Steve French <[email protected]>
-rw-r--r-- | fs/cifs/readdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 798c80a41c88..b334a89d6a66 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c @@ -596,8 +596,8 @@ find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon, loff_t pos, if (server->ops->dir_needs_close(cfile)) { cfile->invalidHandle = true; spin_unlock(&cifs_file_list_lock); - if (server->ops->close) - server->ops->close(xid, tcon, &cfile->fid); + if (server->ops->close_dir) + server->ops->close_dir(xid, tcon, &cfile->fid); } else spin_unlock(&cifs_file_list_lock); if (cfile->srch_inf.ntwrk_buf_start) { |