Now that after r335979 the kernel addresses in API structures are
fixed size, there is no reason left for the unions. Discussed with: brooks
This commit is contained in:
parent
86b4ad7dd5
commit
cc7963191d
@ -370,10 +370,7 @@ struct xinpcb {
|
||||
struct xsocket xi_socket; /* (s,p) */
|
||||
struct in_conninfo inp_inc; /* (s,p) */
|
||||
uint64_t inp_gencnt; /* (s,p) */
|
||||
union {
|
||||
kvaddr_t inp_ppcb; /* (s) netstat(1) */
|
||||
int64_t ph_ppcb;
|
||||
};
|
||||
kvaddr_t inp_ppcb; /* (s) netstat(1) */
|
||||
int64_t inp_spare64[4];
|
||||
uint32_t inp_flow; /* (s) */
|
||||
uint32_t inp_flowid; /* (s) */
|
||||
|
@ -475,14 +475,8 @@ int accept_filt_generic_mod_event(module_t mod, int event, void *data);
|
||||
*/
|
||||
struct xsocket {
|
||||
ksize_t xso_len; /* length of this structure */
|
||||
union {
|
||||
kvaddr_t xso_so; /* kernel address of struct socket */
|
||||
int64_t ph_so;
|
||||
};
|
||||
union {
|
||||
kvaddr_t so_pcb; /* kernel address of struct inpcb */
|
||||
int64_t ph_pcb;
|
||||
};
|
||||
kvaddr_t xso_so; /* kernel address of struct socket */
|
||||
kvaddr_t so_pcb; /* kernel address of struct inpcb */
|
||||
uint64_t so_oobmark;
|
||||
int64_t so_spare64[8];
|
||||
int32_t xso_protocol;
|
||||
|
Loading…
x
Reference in New Issue
Block a user