[GFS2] fix bz 231369, gfs2 will oops if you specify an invalid mount option
authorJosef Whiter <jwhiter@redhat.com>
Wed, 7 Mar 2007 22:09:10 +0000 (17:09 -0500)
committerSteven Whitehouse <swhiteho@redhat.com>
Tue, 1 May 2007 08:10:32 +0000 (09:10 +0100)
If you specify an invalid mount option when trying to mount a gfs2 filesystem,
gfs2 will oops.  The attached patch resolves this problem.

Signed-off-by: Josef Whiter <jwhiter@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/glock.c

index 9f203ef..a3a24f2 100644 (file)
@@ -2217,7 +2217,7 @@ int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
 
 void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
 {
-       if (sdp->debugfs_dentry)
+       if (sdp && sdp->debugfs_dentry)
                debugfs_remove(sdp->debugfs_dentry);
 }