diff options
author | Roberto Nibali <ratz@drugphish.ch> | 2006-01-03 17:22:59 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-03 17:22:59 -0500 |
commit | 4b5bdf5cc3695dc5caba011b9c616b40e6299638 (patch) | |
tree | 898ccc98f7501c08cd8153621137045143775c7e /net/ipv4/ipvs/ip_vs_conn.c | |
parent | fd30333d0fab9e870af89e112454996c188655e9 (diff) |
[IPVS]: Cleanup IP_VS_DBG statements.
From: Roberto Nibali <ratz@drugphish.ch>
The attached patch (against current -GIT) is a cleanup patch which does
following:
o lookup debug messages shifted back to 9
o added more informational value to flags and refcnt since those
entries can be in multiple referenced structures
o cleanup 80 char violation
It's the prepatch to the session pool implementation and helps very much
to debug and monitor important variables and structures regarding the
threshold limitation and persistency without the thousands of lookup
messages which noone is interested in.
Signed-off-by: Horms <horms@verge.net.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipvs/ip_vs_conn.c')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_conn.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/net/ipv4/ipvs/ip_vs_conn.c b/net/ipv4/ipvs/ip_vs_conn.c index d35cea31cb55..ed5bd56a501d 100644 --- a/net/ipv4/ipvs/ip_vs_conn.c +++ b/net/ipv4/ipvs/ip_vs_conn.c | |||
@@ -221,7 +221,7 @@ struct ip_vs_conn *ip_vs_conn_in_get | |||
221 | if (!cp && atomic_read(&ip_vs_conn_no_cport_cnt)) | 221 | if (!cp && atomic_read(&ip_vs_conn_no_cport_cnt)) |
222 | cp = __ip_vs_conn_in_get(protocol, s_addr, 0, d_addr, d_port); | 222 | cp = __ip_vs_conn_in_get(protocol, s_addr, 0, d_addr, d_port); |
223 | 223 | ||
224 | IP_VS_DBG(7, "lookup/in %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", | 224 | IP_VS_DBG(9, "lookup/in %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", |
225 | ip_vs_proto_name(protocol), | 225 | ip_vs_proto_name(protocol), |
226 | NIPQUAD(s_addr), ntohs(s_port), | 226 | NIPQUAD(s_addr), ntohs(s_port), |
227 | NIPQUAD(d_addr), ntohs(d_port), | 227 | NIPQUAD(d_addr), ntohs(d_port), |
@@ -256,7 +256,7 @@ struct ip_vs_conn *ip_vs_ct_in_get | |||
256 | out: | 256 | out: |
257 | ct_read_unlock(hash); | 257 | ct_read_unlock(hash); |
258 | 258 | ||
259 | IP_VS_DBG(7, "template lookup/in %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", | 259 | IP_VS_DBG(9, "template lookup/in %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", |
260 | ip_vs_proto_name(protocol), | 260 | ip_vs_proto_name(protocol), |
261 | NIPQUAD(s_addr), ntohs(s_port), | 261 | NIPQUAD(s_addr), ntohs(s_port), |
262 | NIPQUAD(d_addr), ntohs(d_port), | 262 | NIPQUAD(d_addr), ntohs(d_port), |
@@ -297,7 +297,7 @@ struct ip_vs_conn *ip_vs_conn_out_get | |||
297 | 297 | ||
298 | ct_read_unlock(hash); | 298 | ct_read_unlock(hash); |
299 | 299 | ||
300 | IP_VS_DBG(7, "lookup/out %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", | 300 | IP_VS_DBG(9, "lookup/out %s %u.%u.%u.%u:%d->%u.%u.%u.%u:%d %s\n", |
301 | ip_vs_proto_name(protocol), | 301 | ip_vs_proto_name(protocol), |
302 | NIPQUAD(s_addr), ntohs(s_port), | 302 | NIPQUAD(s_addr), ntohs(s_port), |
303 | NIPQUAD(d_addr), ntohs(d_port), | 303 | NIPQUAD(d_addr), ntohs(d_port), |
@@ -393,8 +393,9 @@ ip_vs_bind_dest(struct ip_vs_conn *cp, struct ip_vs_dest *dest) | |||
393 | cp->flags |= atomic_read(&dest->conn_flags); | 393 | cp->flags |= atomic_read(&dest->conn_flags); |
394 | cp->dest = dest; | 394 | cp->dest = dest; |
395 | 395 | ||
396 | IP_VS_DBG(9, "Bind-dest %s c:%u.%u.%u.%u:%d v:%u.%u.%u.%u:%d " | 396 | IP_VS_DBG(7, "Bind-dest %s c:%u.%u.%u.%u:%d v:%u.%u.%u.%u:%d " |
397 | "d:%u.%u.%u.%u:%d fwd:%c s:%u flg:%X cnt:%d destcnt:%d\n", | 397 | "d:%u.%u.%u.%u:%d fwd:%c s:%u conn->flags:%X conn->refcnt:%d " |
398 | "dest->refcnt:%d\n", | ||
398 | ip_vs_proto_name(cp->protocol), | 399 | ip_vs_proto_name(cp->protocol), |
399 | NIPQUAD(cp->caddr), ntohs(cp->cport), | 400 | NIPQUAD(cp->caddr), ntohs(cp->cport), |
400 | NIPQUAD(cp->vaddr), ntohs(cp->vport), | 401 | NIPQUAD(cp->vaddr), ntohs(cp->vport), |
@@ -432,8 +433,9 @@ static inline void ip_vs_unbind_dest(struct ip_vs_conn *cp) | |||
432 | if (!dest) | 433 | if (!dest) |
433 | return; | 434 | return; |
434 | 435 | ||
435 | IP_VS_DBG(9, "Unbind-dest %s c:%u.%u.%u.%u:%d v:%u.%u.%u.%u:%d " | 436 | IP_VS_DBG(7, "Unbind-dest %s c:%u.%u.%u.%u:%d v:%u.%u.%u.%u:%d " |
436 | "d:%u.%u.%u.%u:%d fwd:%c s:%u flg:%X cnt:%d destcnt:%d\n", | 437 | "d:%u.%u.%u.%u:%d fwd:%c s:%u conn->flags:%X conn->refcnt:%d " |
438 | "dest->refcnt:%d\n", | ||
437 | ip_vs_proto_name(cp->protocol), | 439 | ip_vs_proto_name(cp->protocol), |
438 | NIPQUAD(cp->caddr), ntohs(cp->cport), | 440 | NIPQUAD(cp->caddr), ntohs(cp->cport), |
439 | NIPQUAD(cp->vaddr), ntohs(cp->vport), | 441 | NIPQUAD(cp->vaddr), ntohs(cp->vport), |
@@ -573,7 +575,7 @@ static void ip_vs_conn_expire(unsigned long data) | |||
573 | ip_vs_conn_hash(cp); | 575 | ip_vs_conn_hash(cp); |
574 | 576 | ||
575 | expire_later: | 577 | expire_later: |
576 | IP_VS_DBG(7, "delayed: refcnt-1=%d conn.n_control=%d\n", | 578 | IP_VS_DBG(7, "delayed: conn->refcnt-1=%d conn->n_control=%d\n", |
577 | atomic_read(&cp->refcnt)-1, | 579 | atomic_read(&cp->refcnt)-1, |
578 | atomic_read(&cp->n_control)); | 580 | atomic_read(&cp->n_control)); |
579 | 581 | ||