projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90017ac
)
sctp: improve debug message to also log curr pkt and new chunk size
author
Marcelo Ricardo Leitner
<
[email protected]
>
Thu, 2 Jun 2016 18:05:44 +0000
(15:05 -0300)
committer
David S. Miller
<
[email protected]
>
Fri, 3 Jun 2016 23:37:22 +0000
(19:37 -0400)
This is useful for debugging packet sizes.
Signed-off-by: Marcelo Ricardo Leitner <
[email protected]
>
Tested-by: Xin Long <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
net/sctp/output.c
patch
|
blob
|
history
diff --git
a/net/sctp/output.c
b/net/sctp/output.c
index 60499a69179d255c47da1fa19b73147917a050bf..90d2e125c2f5e0e1ecb33a7eab10772e5b39567c 100644
(file)
--- a/
net/sctp/output.c
+++ b/
net/sctp/output.c
@@
-182,7
+182,8
@@
sctp_xmit_t sctp_packet_transmit_chunk(struct sctp_packet *packet,
sctp_xmit_t retval;
int error = 0;
- pr_debug("%s: packet:%p chunk:%p\n", __func__, packet, chunk);
+ pr_debug("%s: packet:%p size:%lu chunk:%p size:%d\n", __func__,
+ packet, packet->size, chunk, chunk->skb ? chunk->skb->len : -1);
switch ((retval = (sctp_packet_append_chunk(packet, chunk)))) {
case SCTP_XMIT_PMTU_FULL: