dtrace: third update to the siftr probe

This adds the changes corresponding to
https://cgit.freebsd.org/src/commit/?id=60167184abd54ca12c6bf7ab60f2a08b41342f84
to the siftr probe.
This concludes the series up updates.

Reviewed by:		rscheff
Sponsored by:		Netflix, Inc.
Differential Revision:	https://reviews.freebsd.org/D40825
This commit is contained in:
Michael Tuexen 2023-07-01 09:27:31 +02:00
parent bb06a80cf6
commit f85b82daf1
2 changed files with 0 additions and 4 deletions

View File

@ -44,7 +44,6 @@ typedef struct siftrinfo {
struct timeval tval;
uint8_t direction;
uint8_t ipver;
uint32_t hash;
uint16_t tcp_localport;
uint16_t tcp_foreignport;
uint32_t snd_cwnd;
@ -74,7 +73,6 @@ typedef struct siftrinfo {
translator siftrinfo_t < struct pkt_node *p > {
direction = p == NULL ? 0 : p->direction;
ipver = p == NULL ? 0 : p->ipver;
hash = p == NULL ? 0 : p->hash;
tcp_localport = p == NULL ? 0 : ntohs(p->tcp_localport);
tcp_foreignport = p == NULL ? 0 : ntohs(p->tcp_foreignport);
snd_cwnd = p == NULL ? 0 : p->snd_cwnd;

View File

@ -319,8 +319,6 @@ Either
for IPv4, or
.Qq 2
for IPv6.
.It Vt uint32_t hash
Hash of the packet that triggered the log message.
.It Vt uint16_t tcp_localport
The TCP port that the local host is communicating via.
.It Vt uint16_t tcp_foreignport