summaryrefslogtreecommitdiffstats
path: root/fs/gfs2/main.c
diff options
context:
space:
mode:
authorRobert Peterson2007-03-16 11:26:37 +0100
committerSteven Whitehouse2007-05-01 10:10:29 +0200
commit7c52b166c588c98cf3d2b2e7e6a0468a98e84d0d (patch)
tree3a38426f1479263cd75fa76204cdc1a620e7ca9f /fs/gfs2/main.c
parentlibata: honour host controllers that want just one host (diff)
downloadkernel-qcow2-linux-7c52b166c588c98cf3d2b2e7e6a0468a98e84d0d.tar.gz
kernel-qcow2-linux-7c52b166c588c98cf3d2b2e7e6a0468a98e84d0d.tar.xz
kernel-qcow2-linux-7c52b166c588c98cf3d2b2e7e6a0468a98e84d0d.zip
[GFS2] Add gfs2_tool lockdump support to gfs2 (bz 228540)
The attached patch resolves bz 228540. This adds the capability for gfs2 to dump gfs2 locks through the debugfs file system. This used to exist in gfs1 as "gfs_tool lockdump" but it's missing from gfs2 because all the ioctls were stripped out. Please see the bugzilla for more history about the fix. This patch is also attached to the bugzilla record. The patch is against Steve Whitehouse's latest nmw git tree kernel (2.6.21-rc1) and has been tested on system trin-10. Signed-off-by: Robert Peterson <rpeterso@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/main.c')
-rw-r--r--fs/gfs2/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/gfs2/main.c b/fs/gfs2/main.c
index 6e8a59809abf..218395371dbe 100644
--- a/fs/gfs2/main.c
+++ b/fs/gfs2/main.c
@@ -103,6 +103,8 @@ static int __init init_gfs2_fs(void)
if (error)
goto fail_unregister;
+ gfs2_register_debugfs();
+
printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
return 0;
@@ -130,6 +132,7 @@ fail:
static void __exit exit_gfs2_fs(void)
{
+ gfs2_unregister_debugfs();
unregister_filesystem(&gfs2_fs_type);
unregister_filesystem(&gfs2meta_fs_type);