diff options
author | Robert Peterson <rpeterso@redhat.com> | 2007-04-18 12:41:11 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-05-01 04:11:33 -0400 |
commit | 5f8820960cf4fb621483d4a37c24939ad831bfe7 (patch) | |
tree | 8efc44452a7d353c41cefaf1b053a37868fb72c1 /fs/gfs2/glock.c | |
parent | bdd19a22f85a7039e01accd8717eaec4addd9dfd (diff) |
[GFS2] lockdump improvements
The patch below consists of the following changes (in code order):
1. I fixed a minor compiler warning regarding the printing of
a kernel symbol address.
2. I implemented a suggestion from Dave Teigland that moves
the debugfs information for gfs2 into a subdirectory so
we can easily expand our use of debugfs in the future.
The current code keeps the glock information in:
/debug/gfs2/<fs>
With the patch, the new code keeps the glock information in:
/debug/gfs2/<fs>/glock
That will allow us to create more debugfs files in the future.
3. This fixes a bug whereby a failed mount attempt causes the
debugfs file to not be deleted. Failed mount attempts should
always clean up after themselves, including deleting the
debugfs file and/or directory.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/glock.c')
-rw-r--r-- | fs/gfs2/glock.c | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index b075f9359c60..7988715b7a07 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c | |||
@@ -1774,7 +1774,7 @@ static void gfs2_print_symbol(struct glock_iter *gi, const char *fmt, | |||
1774 | 1774 | ||
1775 | if (gi) { | 1775 | if (gi) { |
1776 | memset(buffer, 0, sizeof(buffer)); | 1776 | memset(buffer, 0, sizeof(buffer)); |
1777 | sprintf(buffer, "%p", address); | 1777 | sprintf(buffer, "0x%08lx", address); |
1778 | print_dbg(gi, fmt, buffer); | 1778 | print_dbg(gi, fmt, buffer); |
1779 | } | 1779 | } |
1780 | else | 1780 | else |
@@ -2146,11 +2146,14 @@ static const struct file_operations gfs2_debug_fops = { | |||
2146 | 2146 | ||
2147 | int gfs2_create_debugfs_file(struct gfs2_sbd *sdp) | 2147 | int gfs2_create_debugfs_file(struct gfs2_sbd *sdp) |
2148 | { | 2148 | { |
2149 | sdp->debugfs_dentry = debugfs_create_file(sdp->sd_table_name, | 2149 | sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root); |
2150 | S_IFREG | S_IRUGO, | 2150 | if (!sdp->debugfs_dir) |
2151 | gfs2_root, sdp, | 2151 | return -ENOMEM; |
2152 | &gfs2_debug_fops); | 2152 | sdp->debugfs_dentry_glocks = debugfs_create_file("glocks", |
2153 | if (!sdp->debugfs_dentry) | 2153 | S_IFREG | S_IRUGO, |
2154 | sdp->debugfs_dir, sdp, | ||
2155 | &gfs2_debug_fops); | ||
2156 | if (!sdp->debugfs_dentry_glocks) | ||
2154 | return -ENOMEM; | 2157 | return -ENOMEM; |
2155 | 2158 | ||
2156 | return 0; | 2159 | return 0; |
@@ -2158,8 +2161,14 @@ int gfs2_create_debugfs_file(struct gfs2_sbd *sdp) | |||
2158 | 2161 | ||
2159 | void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp) | 2162 | void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp) |
2160 | { | 2163 | { |
2161 | if (sdp && sdp->debugfs_dentry) | 2164 | if (sdp && sdp->debugfs_dir) { |
2162 | debugfs_remove(sdp->debugfs_dentry); | 2165 | if (sdp->debugfs_dentry_glocks) { |
2166 | debugfs_remove(sdp->debugfs_dentry_glocks); | ||
2167 | sdp->debugfs_dentry_glocks = NULL; | ||
2168 | } | ||
2169 | debugfs_remove(sdp->debugfs_dir); | ||
2170 | sdp->debugfs_dir = NULL; | ||
2171 | } | ||
2163 | } | 2172 | } |
2164 | 2173 | ||
2165 | int gfs2_register_debugfs(void) | 2174 | int gfs2_register_debugfs(void) |
@@ -2171,4 +2180,5 @@ int gfs2_register_debugfs(void) | |||
2171 | void gfs2_unregister_debugfs(void) | 2180 | void gfs2_unregister_debugfs(void) |
2172 | { | 2181 | { |
2173 | debugfs_remove(gfs2_root); | 2182 | debugfs_remove(gfs2_root); |
2183 | gfs2_root = NULL; | ||
2174 | } | 2184 | } |