Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46323
b: refs/heads/master
c: 2d72e71
h: refs/heads/master
i:
  46321: 9be06ec
  46319: 3952ec1
v: v3
  • Loading branch information
Steven Whitehouse committed Feb 7, 2007
1 parent 87e7406 commit de3c6fc
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: 549ae0ac3d574a682e82b02e79259a65445a675b
refs/heads/master: 2d72e7101cc7fff5c1eb21bfcbba51c8002418d2
4 changes: 3 additions & 1 deletion trunk/fs/gfs2/ops_address.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,10 @@ static int gfs2_prepare_write(struct file *file, struct page *page,
gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|LM_FLAG_TRY_1CB, &ip->i_gh);
error = gfs2_glock_nq_atime(&ip->i_gh);
if (unlikely(error)) {
if (error == GLR_TRYFAILED)
if (error == GLR_TRYFAILED) {
unlock_page(page);
error = AOP_TRUNCATED_PAGE;
}
goto out_uninit;
}

Expand Down

0 comments on commit de3c6fc

Please sign in to comment.