CIFS: Move open file handling to writepages
authorPavel Shilovsky <pshilov@microsoft.com>
Mon, 28 Jan 2019 20:09:02 +0000 (12:09 -0800)
committerSteve French <stfrench@microsoft.com>
Wed, 6 Mar 2019 00:10:04 +0000 (18:10 -0600)
Currently we check for an open file existence in wdata_send_pages()
which doesn't provide an easy way to handle error codes that will
be returned from find_writable_filehandle() once it is changed.
Move the check to writepages.

Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifs/file.c

index 1141514..8d5fec4 100644 (file)
@@ -2076,11 +2076,12 @@ wdata_prepare_pages(struct cifs_writedata *wdata, unsigned int found_pages,
 }
 
 static int
-wdata_send_pages(struct TCP_Server_Info *server, struct cifs_writedata *wdata,
-                unsigned int nr_pages, struct address_space *mapping,
-                struct writeback_control *wbc)
+wdata_send_pages(struct cifs_writedata *wdata, unsigned int nr_pages,
+                struct address_space *mapping, struct writeback_control *wbc)
 {
        int rc;
+       struct TCP_Server_Info *server =
+                               tlink_tcon(wdata->cfile->tlink)->ses->server;
 
        wdata->sync_mode = wbc->sync_mode;
        wdata->nr_pages = nr_pages;
@@ -2090,22 +2091,16 @@ wdata_send_pages(struct TCP_Server_Info *server, struct cifs_writedata *wdata,
                        page_offset(wdata->pages[nr_pages - 1]),
                        (loff_t)PAGE_SIZE);
        wdata->bytes = ((nr_pages - 1) * PAGE_SIZE) + wdata->tailsz;
+       wdata->pid = wdata->cfile->pid;
 
        rc = adjust_credits(server, &wdata->credits, wdata->bytes);
        if (rc)
                return rc;
 
-       if (!wdata->cfile) {
-               cifs_dbg(VFS, "No writable handle in writepages\n");
-               rc = -EBADF;
-       } else {
-               wdata->pid = wdata->cfile->pid;
-               if (wdata->cfile->invalidHandle)
-                       rc = -EAGAIN;
-               else
-                       rc = server->ops->async_writev(wdata,
-                                                      cifs_writedata_release);
-       }
+       if (wdata->cfile->invalidHandle)
+               rc = -EAGAIN;
+       else
+               rc = server->ops->async_writev(wdata, cifs_writedata_release);
 
        return rc;
 }
@@ -2193,7 +2188,11 @@ retry:
                wdata->cfile = cfile;
                cfile = NULL;
 
-               rc = wdata_send_pages(server, wdata, nr_pages, mapping, wbc);
+               if (!wdata->cfile) {
+                       cifs_dbg(VFS, "No writable handle in writepages\n");
+                       rc = -EBADF;
+               } else
+                       rc = wdata_send_pages(wdata, nr_pages, mapping, wbc);
 
                for (i = 0; i < nr_pages; ++i)
                        unlock_page(wdata->pages[i]);