dtrace: fix constants used by the siftr probe

The constants used in the C code were changed in
https://svnweb.freebsd.org/changeset/base/343646
but changing them also in the dtrace translator was missed.

Reviewed by:		cc, rscheff
MFC after:		3 days
Sponsored by:		Netflix, Inc.
Differential Revision:	https://reviews.freebsd.org/D40805
This commit is contained in:
Michael Tuexen 2023-06-30 22:15:47 +02:00
parent dc2d26df43
commit f5541b85a5

View file

@ -29,9 +29,9 @@
* Convert a SIFTR direction value to a string
*/
#pragma D binding "1.12.1" SIFTR_IN
inline int SIFTR_IN = 1;
inline int SIFTR_IN = 0;
#pragma D binding "1.12.1" SIFTR_OUT
inline int SIFTR_OUT = 2;
inline int SIFTR_OUT = 1;
/* SIFTR direction strings. */
#pragma D binding "1.12.1" siftr_dir_string