Re: [PATCH] cifs: set mapping error when page writeback fails in writepage or launder_pages

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



merged into cifs-2.6.git for-next

On Thu, May 25, 2017 at 5:59 AM, Jeff Layton <jlayton@xxxxxxxxxx> wrote:
> Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx>
> Reviewed-by: Christoph Hellwig <hch@xxxxxx>
> Reviewed-by: Jan Kara <jack@xxxxxxx>
> ---
>  fs/cifs/file.c | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/fs/cifs/file.c b/fs/cifs/file.c
> index 0fd081bd2a2f..5009860dbdc6 100644
> --- a/fs/cifs/file.c
> +++ b/fs/cifs/file.c
> @@ -2234,14 +2234,16 @@ cifs_writepage_locked(struct page *page, struct writeback_control *wbc)
>         set_page_writeback(page);
>  retry_write:
>         rc = cifs_partialpagewrite(page, 0, PAGE_SIZE);
> -       if (rc == -EAGAIN && wbc->sync_mode == WB_SYNC_ALL)
> -               goto retry_write;
> -       else if (rc == -EAGAIN)
> +       if (rc == -EAGAIN) {
> +               if (wbc->sync_mode == WB_SYNC_ALL)
> +                       goto retry_write;
>                 redirty_page_for_writepage(wbc, page);
> -       else if (rc != 0)
> +       } else if (rc != 0) {
>                 SetPageError(page);
> -       else
> +               mapping_set_error(page->mapping, rc);
> +       } else {
>                 SetPageUptodate(page);
> +       }
>         end_page_writeback(page);
>         put_page(page);
>         free_xid(xid);
> --
> 2.9.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Thanks,

Steve
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux