diff options
author | Abhijith Das <adas@redhat.com> | 2010-02-05 18:25:41 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-02-12 05:15:51 -0500 |
commit | 0e5a9fb0426108d750c97c25b1ab04d3768b5aff (patch) | |
tree | 99a3b2f6ff12b9e55b6590210d0a5ef8e852156b /fs | |
parent | 676ad585531e965416fd958747894541dabcec96 (diff) |
GFS2: Fix error code
We need this one-liner to signal the mount helper of the 'insufficient journals' condition.
Signed-off-by: Abhijith Das <adas@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/ops_fstype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index 8a102f731003..a86ed6381566 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -725,7 +725,7 @@ static int init_journal(struct gfs2_sbd *sdp, int undo) | |||
725 | goto fail; | 725 | goto fail; |
726 | } | 726 | } |
727 | 727 | ||
728 | error = -EINVAL; | 728 | error = -EUSERS; |
729 | if (!gfs2_jindex_size(sdp)) { | 729 | if (!gfs2_jindex_size(sdp)) { |
730 | fs_err(sdp, "no journals!\n"); | 730 | fs_err(sdp, "no journals!\n"); |
731 | goto fail_jindex; | 731 | goto fail_jindex; |