Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Jul 2023 07:30:45 GMT
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: f85b82daf1d6 - main - dtrace: third update to the siftr probe
Message-ID:  <202307010730.3617Ujeh084860@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by tuexen:

URL: https://cgit.FreeBSD.org/src/commit/?id=f85b82daf1d6b6b905831a64161cdebf4307c89c

commit f85b82daf1d6b6b905831a64161cdebf4307c89c
Author:     Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2023-07-01 07:27:31 +0000
Commit:     Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2023-07-01 07:30:34 +0000

    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
---
 cddl/lib/libdtrace/siftr.d  | 2 --
 share/man/man4/dtrace_tcp.4 | 2 --
 2 files changed, 4 deletions(-)

diff --git a/cddl/lib/libdtrace/siftr.d b/cddl/lib/libdtrace/siftr.d
index e61155036d96..791693db7638 100644
--- a/cddl/lib/libdtrace/siftr.d
+++ b/cddl/lib/libdtrace/siftr.d
@@ -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;
diff --git a/share/man/man4/dtrace_tcp.4 b/share/man/man4/dtrace_tcp.4
index 6d7fc9f93793..49dd9449d887 100644
--- a/share/man/man4/dtrace_tcp.4
+++ b/share/man/man4/dtrace_tcp.4
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307010730.3617Ujeh084860>