git: 21780b009b39 - stable/14 - ddb: provide inp_flags2 when printing inpcbs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 10 Nov 2025 19:55:49 UTC
The branch stable/14 has been updated by tuexen:
URL: https://cgit.FreeBSD.org/src/commit/?id=21780b009b398949c7c23dc7f8371f38cd3af02c
commit 21780b009b398949c7c23dc7f8371f38cd3af02c
Author: Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2025-11-03 11:17:29 +0000
Commit: Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2025-11-10 19:54:33 +0000
ddb: provide inp_flags2 when printing inpcbs
Reviewed by: markj, Peter Lei
Sponsored by: Netflix, Inc.
Differential Revision: https://reviews.freebsd.org/D53542
(cherry picked from commit 5f43b0cb7c3cb7c3209598f8c0818cb47cd9de96)
---
sys/netinet/in_pcb.c | 3 +++
sys/netinet/in_pcb.h | 7 +++++++
2 files changed, 10 insertions(+)
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 2263997ea154..427887bbc58a 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -3176,6 +3176,9 @@ db_print_inpcb(struct inpcb *inp, const char *name, int indent)
db_printf("inp_label: %p inp_flags: 0x%b\n",
inp->inp_label, inp->inp_flags, INP_FLAGS_BITS);
+ db_print_indent(indent);
+ db_printf("inp_flags2: 0x%b\n", inp->inp_flags2, INP_FLAGS2_BITS);
+
db_print_indent(indent);
db_printf("inp_sp: %p inp_vflag: 0x%b\n", inp->inp_sp,
inp->inp_vflag, INP_VFLAGS_BITS);
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h
index 0492bf78bfaa..69ebaf0535c7 100644
--- a/sys/netinet/in_pcb.h
+++ b/sys/netinet/in_pcb.h
@@ -609,6 +609,13 @@ void inp_4tuple_get(struct inpcb *inp, uint32_t *laddr, uint16_t *lp,
#define INP_2PCP_MASK (INP_2PCP_BIT0 | INP_2PCP_BIT1 | INP_2PCP_BIT2)
#define INP_2PCP_SHIFT 18 /* shift PCP field in/out of inp_flags2 */
+/* inp_flags2 description for use with printf(9) %b identifier. */
+#define INP_FLAGS2_BITS "\20" \
+ "\11INP_RECVFLOWID\12INP_RECVRSSBUCKETID" \
+ "\13INP_RATE_LIMIT_CHANGED\14INP_ORIGDSTADDR" \
+ "\22INP_2PCP_SET\23INP_2PCP_BIT0\24INP_2PCP_BIT1" \
+ "\25INP_2PCP_BIT2"
+
/*
* Flags passed to in_pcblookup*(), inp_smr_lock() and inp_next().
*/