ocfs2: Initialize the bktcnt variable properly, and call it bucket_count

Signed-off-by: Joel Becker <joel.becker@oracle.com>

+4 -4
+4 -4
fs/ocfs2/dlm/dlmdebug.c
··· 493 493 struct hlist_head *bucket; 494 494 struct hlist_node *list; 495 495 int i, out = 0; 496 - unsigned long total = 0, longest = 0, bktcnt; 496 + unsigned long total = 0, longest = 0, bucket_count = 0; 497 497 498 498 out += snprintf(db->buf + out, db->len - out, 499 499 "Dumping MLEs for Domain: %s\n", dlm->name); ··· 505 505 mle = hlist_entry(list, struct dlm_master_list_entry, 506 506 master_hash_node); 507 507 ++total; 508 - ++bktcnt; 508 + ++bucket_count; 509 509 if (db->len - out < 200) 510 510 continue; 511 511 out += dump_mle(mle, db->buf + out, db->len - out); 512 512 } 513 - longest = max(longest, bktcnt); 514 - bktcnt = 0; 513 + longest = max(longest, bucket_count); 514 + bucket_count = 0; 515 515 } 516 516 spin_unlock(&dlm->master_lock); 517 517