]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
GFS2: Fix quota adjustment return code
authorBob Peterson <rpeterso@redhat.com>
Tue, 15 May 2012 18:51:54 +0000 (14:51 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Wed, 16 May 2012 11:22:38 +0000 (12:22 +0100)
This patch changes function gfs2_adjust_quota so that it properly
returns a good (zero) return code on the normal path through the code.
Without this, mounting GFS2 with -o quota=account periodically gave
this error message: GFS2: fsid=cluster:fs: gfs2_quotad: sync error -5

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/quota.c

index 45d9171e078bf9b935a2bf5f173d734c938dec60..b97178e7d397d3e767694622779ace8716c4d6f3 100644 (file)
@@ -744,7 +744,7 @@ get_a_page:
                i_size_write(inode, size);
        inode->i_mtime = inode->i_atime = CURRENT_TIME;
        mark_inode_dirty(inode);
-       return err;
+       return 0;
 
 unlock_out:
        unlock_page(page);