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>

authored by Abhijith Das and committed by Steven Whitehouse 0e5a9fb0 676ad585

+1 -1
+1 -1
fs/gfs2/ops_fstype.c
··· 725 goto fail; 726 } 727 728 - error = -EINVAL; 729 if (!gfs2_jindex_size(sdp)) { 730 fs_err(sdp, "no journals!\n"); 731 goto fail_jindex;
··· 725 goto fail; 726 } 727 728 + error = -EUSERS; 729 if (!gfs2_jindex_size(sdp)) { 730 fs_err(sdp, "no journals!\n"); 731 goto fail_jindex;