Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=292e539e9386823df8aab556f3da09667f78da8c
Commit:     292e539e9386823df8aab556f3da09667f78da8c
Parent:     4bd91ba18198eee42c39d4c334c825d1a0a4b445
Author:     Josef Bacik <[EMAIL PROTECTED]>
AuthorDate: Tue Jun 5 17:36:38 2007 -0400
Committer:  Steven Whitehouse <[EMAIL PROTECTED]>
CommitDate: Mon Jul 9 08:23:15 2007 +0100

    [DLM] fix reference counting
    
    This is a fix for the patch
    
    021d2ff3a08019260a1dc002793c92d6bf18afb6
    
    I left off a dlm_hold_rsb which causes the box to panic if you try to use
    debugfs.  This patch fixes the problem.  Sorry about that,
    
    Signed-off-by: Josef Bacik <[EMAIL PROTECTED]>
    Signed-off-by: Steven Whitehouse <[EMAIL PROTECTED]>
---
 fs/dlm/debug_fs.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c
index 184be98..9f5de37 100644
--- a/fs/dlm/debug_fs.c
+++ b/fs/dlm/debug_fs.c
@@ -250,6 +250,7 @@ static int rsb_iter_next(struct rsb_iter *ri)
                        goto top;
                 }
                ri->rsb = list_entry(ri->next, struct dlm_rsb, res_hashchain);
+               dlm_hold_rsb(ri->rsb);
                read_unlock(&ls->ls_rsbtbl[i].lock);
                dlm_put_rsb(old);
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to