diff options
author | hiren <hiren@FreeBSD.org> | 2015-04-06 18:40:50 +0000 |
---|---|---|
committer | hiren <hiren@FreeBSD.org> | 2015-04-06 18:40:50 +0000 |
commit | 39fb34452ff3bc4927f319c53cfad417efb4e883 (patch) | |
tree | fab8dc20b771524ae042d1c3a2ab99512f74b231 /sys/netinet/in_pcb.h | |
parent | 511fc2e53ec0c25a92e2d1a47a46821b30ee2b6d (diff) | |
download | FreeBSD-src-39fb34452ff3bc4927f319c53cfad417efb4e883.zip FreeBSD-src-39fb34452ff3bc4927f319c53cfad417efb4e883.tar.gz |
MFC r266418, r266448
Add the flowtype to the inpcb.
Add -R to netstat to dump RSS/flow information.
Reviewed by: delphij
Relnotes: yes (for r266448)
Sponsored by: Limelight Networks
Diffstat (limited to 'sys/netinet/in_pcb.h')
-rw-r--r-- | sys/netinet/in_pcb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index f17cd82..7cfc72a 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -180,7 +180,8 @@ struct inpcb { uint32_t inp_flowid; /* (x) flow id / queue id */ u_int inp_refcount; /* (i) refcount */ void *inp_pspare[5]; /* (x) route caching / general use */ - u_int inp_ispare[6]; /* (x) route caching / user cookie / + uint32_t inp_flowtype; /* (x) M_HASHTYPE value */ + u_int inp_ispare[5]; /* (x) route caching / user cookie / * general use */ /* Local and foreign ports, local and foreign addr. */ |