]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
dlm: use bastmode in debugfs output
authorDavid Teigland <teigland@redhat.com>
Thu, 25 Feb 2010 18:20:57 +0000 (12:20 -0600)
committerDavid Teigland <teigland@redhat.com>
Fri, 26 Feb 2010 18:15:54 +0000 (12:15 -0600)
The bast mode that appears in the debugfs output should be
useful on both master and process nodes.  lkb_highbast is
currently printed, and is only useful on the master node.
lkb_bastmode is only useful on the process node.  This
patch sets lkb_bastmode on the master node as well, and
uses that value in the debugfs print.

Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/debug_fs.c
fs/dlm/lock.c

index 375a2359b3bfa526fd6c4950a024dfd83ce98d56..29d6139c35fcc1b3b51f62082a778ec3c5018038 100644 (file)
@@ -256,7 +256,7 @@ static int print_format3_lock(struct seq_file *s, struct dlm_lkb *lkb,
                        lkb->lkb_status,
                        lkb->lkb_grmode,
                        lkb->lkb_rqmode,
-                       lkb->lkb_highbast,
+                       lkb->lkb_bastmode,
                        rsb_lookup,
                        lkb->lkb_wait_type,
                        lkb->lkb_lvbseq,
index d0e43a3da887b8d9f291810c4b69820bb76b63b7..46ffd3eeaaf7350cf1b9b5969722abfe2f9a89b7 100644 (file)
@@ -320,10 +320,12 @@ static void queue_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rqmode)
 {
        lkb->lkb_time_bast = ktime_get();
 
-       if (is_master_copy(lkb))
+       if (is_master_copy(lkb)) {
+               lkb->lkb_bastmode = rqmode; /* printed by debugfs */
                send_bast(r, lkb, rqmode);
-       else
+       } else {
                dlm_add_ast(lkb, AST_BAST, rqmode);
+       }
 }
 
 /*