Commit fddc2feb authored by Gerrit Renker's avatar Gerrit Renker Committed by David S. Miller

[CCID3]: More to see in dccp_probe

This adds a few more fields of interest to /proc/net/dccpprobe, the following output ensues:

1           2          3           4     5  6     7   8        9        10   11
sec.usec   src:sport   dst:dport   size  s  rtt   p   X_calc   X_recv   X    t_ipi

Also made the formatting consistent.

Scripts that go with this can be downloaded from http://139.133.210.30/users/gerrit/dccp/dccp_probe/Signed-off-by: default avatarGerrit Renker <gerrit@erg.abdn.ac.uk>
Acked-by: default avatarIan McDonald <ian.mcdonald@jandi.co.nz>
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f2645101
...@@ -90,15 +90,18 @@ static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk, ...@@ -90,15 +90,18 @@ static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk,
if (port == 0 || ntohs(inet->dport) == port || if (port == 0 || ntohs(inet->dport) == port ||
ntohs(inet->sport) == port) { ntohs(inet->sport) == port) {
if (hctx) if (hctx)
printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d %d %d %d %d\n", printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d %d %d %d %u "
NIPQUAD(inet->saddr), ntohs(inet->sport), "%llu %llu %d\n",
NIPQUAD(inet->daddr), ntohs(inet->dport), size, NIPQUAD(inet->saddr), ntohs(inet->sport),
hctx->ccid3hctx_s, hctx->ccid3hctx_rtt, NIPQUAD(inet->daddr), ntohs(inet->dport), size,
hctx->ccid3hctx_p, hctx->ccid3hctx_t_ipi); hctx->ccid3hctx_s, hctx->ccid3hctx_rtt,
hctx->ccid3hctx_p, hctx->ccid3hctx_x_calc,
hctx->ccid3hctx_x_recv >> 6,
hctx->ccid3hctx_x >> 6, hctx->ccid3hctx_t_ipi);
else else
printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n", printl("%d.%d.%d.%d:%u %d.%d.%d.%d:%u %d\n",
NIPQUAD(inet->saddr), ntohs(inet->sport), NIPQUAD(inet->saddr), ntohs(inet->sport),
NIPQUAD(inet->daddr), ntohs(inet->dport), size); NIPQUAD(inet->daddr), ntohs(inet->dport), size);
} }
jprobe_return(); jprobe_return();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment