tipc: remove calls to dbg() and msg_dbg()
Eliminates obsolete calls to two of TIPC's main debugging macros, as well as a pair of associated debugging routines that are no longer required. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f5e75269f5
commit
b29f142849
@@ -172,8 +172,6 @@ static struct name_seq *tipc_nameseq_create(u32 type, struct hlist_head *seq_hea
|
||||
spin_lock_init(&nseq->lock);
|
||||
nseq->type = type;
|
||||
nseq->sseqs = sseq;
|
||||
dbg("tipc_nameseq_create(): nseq = %p, type %u, ssseqs %p, ff: %u\n",
|
||||
nseq, type, nseq->sseqs, nseq->first_free);
|
||||
nseq->alloc = 1;
|
||||
INIT_HLIST_NODE(&nseq->ns_list);
|
||||
INIT_LIST_HEAD(&nseq->subscriptions);
|
||||
@@ -251,8 +249,6 @@ static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
|
||||
int created_subseq = 0;
|
||||
|
||||
sseq = nameseq_find_subseq(nseq, lower);
|
||||
dbg("nameseq_ins: for seq %p, {%u,%u}, found sseq %p\n",
|
||||
nseq, type, lower, sseq);
|
||||
if (sseq) {
|
||||
|
||||
/* Lower end overlaps existing entry => need an exact match */
|
||||
@@ -289,18 +285,15 @@ static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
|
||||
type, lower, upper);
|
||||
return NULL;
|
||||
}
|
||||
dbg("Allocated %u more sseqs\n", nseq->alloc);
|
||||
memcpy(sseqs, nseq->sseqs,
|
||||
nseq->alloc * sizeof(struct sub_seq));
|
||||
kfree(nseq->sseqs);
|
||||
nseq->sseqs = sseqs;
|
||||
nseq->alloc *= 2;
|
||||
}
|
||||
dbg("Have %u sseqs for type %u\n", nseq->alloc, type);
|
||||
|
||||
/* Insert new sub-sequence */
|
||||
|
||||
dbg("ins in pos %u, ff = %u\n", inspos, nseq->first_free);
|
||||
sseq = &nseq->sseqs[inspos];
|
||||
freesseq = &nseq->sseqs[nseq->first_free];
|
||||
memmove(sseq + 1, sseq, (freesseq - sseq) * sizeof (*sseq));
|
||||
@@ -310,17 +303,12 @@ static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
|
||||
sseq->upper = upper;
|
||||
created_subseq = 1;
|
||||
}
|
||||
dbg("inserting {%u,%u,%u} from <0x%x:%u> into sseq %p(%u,%u) of seq %p\n",
|
||||
type, lower, upper, node, port, sseq,
|
||||
sseq->lower, sseq->upper, nseq);
|
||||
|
||||
/* Insert a publication: */
|
||||
|
||||
publ = publ_create(type, lower, upper, scope, node, port, key);
|
||||
if (!publ)
|
||||
return NULL;
|
||||
dbg("inserting publ %p, node=0x%x publ->node=0x%x, subscr->node=%p\n",
|
||||
publ, node, publ->node, publ->subscr.node);
|
||||
|
||||
sseq->zone_list_size++;
|
||||
if (!sseq->zone_list)
|
||||
@@ -355,7 +343,6 @@ static struct publication *tipc_nameseq_insert_publ(struct name_seq *nseq,
|
||||
* Any subscriptions waiting for notification?
|
||||
*/
|
||||
list_for_each_entry_safe(s, st, &nseq->subscriptions, nameseq_list) {
|
||||
dbg("calling report_overlap()\n");
|
||||
tipc_subscr_report_overlap(s,
|
||||
publ->lower,
|
||||
publ->upper,
|
||||
@@ -393,9 +380,6 @@ static struct publication *tipc_nameseq_remove_publ(struct name_seq *nseq, u32 i
|
||||
if (!sseq)
|
||||
return NULL;
|
||||
|
||||
dbg("tipc_nameseq_remove_publ: seq: %p, sseq %p, {%u,%u}, key %u\n",
|
||||
nseq, sseq, nseq->type, inst, key);
|
||||
|
||||
/* Remove publication from zone scope list */
|
||||
|
||||
prev = sseq->zone_list;
|
||||
@@ -549,15 +533,10 @@ static struct name_seq *nametbl_find_seq(u32 type)
|
||||
struct hlist_node *seq_node;
|
||||
struct name_seq *ns;
|
||||
|
||||
dbg("find_seq %u,(%u,0x%x) table = %p, hash[type] = %u\n",
|
||||
type, htonl(type), type, table.types, hash(type));
|
||||
|
||||
seq_head = &table.types[hash(type)];
|
||||
hlist_for_each_entry(ns, seq_node, seq_head, ns_list) {
|
||||
if (ns->type == type) {
|
||||
dbg("found %p\n", ns);
|
||||
if (ns->type == type)
|
||||
return ns;
|
||||
}
|
||||
}
|
||||
|
||||
return NULL;
|
||||
@@ -568,18 +547,14 @@ struct publication *tipc_nametbl_insert_publ(u32 type, u32 lower, u32 upper,
|
||||
{
|
||||
struct name_seq *seq = nametbl_find_seq(type);
|
||||
|
||||
dbg("tipc_nametbl_insert_publ: {%u,%u,%u} found %p\n", type, lower, upper, seq);
|
||||
if (lower > upper) {
|
||||
warn("Failed to publish illegal {%u,%u,%u}\n",
|
||||
type, lower, upper);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
dbg("Publishing {%u,%u,%u} from 0x%x\n", type, lower, upper, node);
|
||||
if (!seq) {
|
||||
if (!seq)
|
||||
seq = tipc_nameseq_create(type, &table.types[hash(type)]);
|
||||
dbg("tipc_nametbl_insert_publ: created %p\n", seq);
|
||||
}
|
||||
if (!seq)
|
||||
return NULL;
|
||||
|
||||
@@ -596,7 +571,6 @@ struct publication *tipc_nametbl_remove_publ(u32 type, u32 lower,
|
||||
if (!seq)
|
||||
return NULL;
|
||||
|
||||
dbg("Withdrawing {%u,%u} from 0x%x\n", type, lower, node);
|
||||
publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key);
|
||||
|
||||
if (!seq->first_free && list_empty(&seq->subscriptions)) {
|
||||
@@ -792,7 +766,6 @@ int tipc_nametbl_withdraw(u32 type, u32 lower, u32 ref, u32 key)
|
||||
{
|
||||
struct publication *publ;
|
||||
|
||||
dbg("tipc_nametbl_withdraw: {%u,%u}, key=%u\n", type, lower, key);
|
||||
write_lock_bh(&tipc_nametbl_lock);
|
||||
publ = tipc_nametbl_remove_publ(type, lower, tipc_own_addr, ref, key);
|
||||
if (likely(publ)) {
|
||||
@@ -827,8 +800,6 @@ void tipc_nametbl_subscribe(struct subscription *s)
|
||||
}
|
||||
if (seq){
|
||||
spin_lock_bh(&seq->lock);
|
||||
dbg("tipc_nametbl_subscribe:found %p for {%u,%u,%u}\n",
|
||||
seq, type, s->seq.lower, s->seq.upper);
|
||||
tipc_nameseq_subscribe(seq, s);
|
||||
spin_unlock_bh(&seq->lock);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user