Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 164441 Details for
Bug 253921
GFS2: NULL superblock pointer causes panic after bad mount option
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
check for NULL sdp in gfs2_kill_sb
bz253921.patch (text/plain), 438 bytes, created by
Abhijith Das
on 2007-08-22 22:18:19 UTC
(
hide
)
Description:
check for NULL sdp in gfs2_kill_sb
Filename:
MIME Type:
Creator:
Abhijith Das
Created:
2007-08-22 22:18:19 UTC
Size:
438 bytes
patch
obsolete
>diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c >index 9e0e9be..314c113 100644 >--- a/fs/gfs2/ops_fstype.c >+++ b/fs/gfs2/ops_fstype.c >@@ -887,8 +887,10 @@ error: > > static void gfs2_kill_sb(struct super_block *sb) > { >- gfs2_delete_debugfs_file(sb->s_fs_info); >- gfs2_meta_syncfs(sb->s_fs_info); >+ if (sb->s_fs_info) { >+ gfs2_delete_debugfs_file(sb->s_fs_info); >+ gfs2_meta_syncfs(sb->s_fs_info); >+ } > kill_block_super(sb); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 253921
: 164441