Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79658
b: refs/heads/master
c: 3d509e5
h: refs/heads/master
v: v3
  • Loading branch information
Chuck Lever authored and Trond Myklebust committed Jan 30, 2008
1 parent d3638bf commit 78186c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bf4285e75c3272ad9bfdeb886d247962bb2985f8
refs/heads/master: 3d509e5454a0a5ac88bf3191ab65d85952c1de31
4 changes: 3 additions & 1 deletion trunk/fs/nfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,9 @@ static int nfs_write_end(struct file *file, struct address_space *mapping,
unlock_page(page);
page_cache_release(page);

return status < 0 ? status : copied;
if (status < 0)
return status;
return copied;
}

static void nfs_invalidate_page(struct page *page, unsigned long offset)
Expand Down

0 comments on commit 78186c9

Please sign in to comment.