[Patch 2/8] CLD: cleanup: add a log entry about sent packet

Pete Zaitcev <[email protected]> Wed, 14 Apr 2010 12:34:03 -0600
Newsgroups org.kernel.vger.hail-devel
Message-ID <[email protected]>
Currently, there's nothing in the verbose output about sent packets
at all. No, really! This is very confusing, even if I run tcpdump
in the same time. I think we should add this.

Signed-off-by: Pete Zaitcev <[email protected]>

---
 lib/cldc.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/cldc.c b/lib/cldc.c
index be8598f..305e05d 100644
--- a/lib/cldc.c
+++ b/lib/cldc.c
@@ -677,6 +677,8 @@ static void sess_expire(struct cldc_session *sess)
 static int sess_send_pkt(struct cldc_session *sess,
 			 const void *pkt, size_t pkt_len)
 {
+	HAIL_VERBOSE(&sess->log, "%s: sending %ld bytes",
+		     __func__, (long)pkt_len);
 	return sess->ops->pkt_send(sess->private,
 				   sess->addr, sess->addr_len,
 				   pkt, pkt_len);