diff options
author | S. Wendy Cheng <wcheng@redhat.com> | 2007-06-25 21:14:31 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-07-09 08:23:54 +0100 |
commit | 1875f2f31b3955dff8c3712a56ae61836c8b90fe (patch) | |
tree | d2283452b7de1ae042cf6265cc9fe7f5dd08a20d /fs/gfs2 | |
parent | 773ed1a044adc868036dee1722b8bca6ce5923e2 (diff) | |
download | op-kernel-dev-1875f2f31b3955dff8c3712a56ae61836c8b90fe.zip op-kernel-dev-1875f2f31b3955dff8c3712a56ae61836c8b90fe.tar.gz |
[GFS2] Fix gfs2_block_truncate_page err return
Code segment inside gfs2_block_truncate_page() doesn't set the return
code correctly. This causes NFSD erroneously returns EIO back to client
with setattr procedure call (truncate error).
Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/bmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index d16044cb..cd805a6 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c @@ -927,6 +927,7 @@ static int gfs2_block_truncate_page(struct address_space *mapping) /* Uhhuh. Read error. Complain and punt. */ if (!buffer_uptodate(bh)) goto unlock; + err = 0; } if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip)) |