Home
last modified time | relevance | path

Searched refs:DS_HDR_SZ (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/sun4v/io/
H A Dds_common.c568 bzero(hbuf, DS_HDR_SZ); in ds_handle_recv()
569 read_size = DS_HDR_SZ; in ds_handle_recv()
577 if (read_size < DS_HDR_SZ) { in ds_handle_recv()
592 msglen = DS_HDR_SZ + read_size; in ds_handle_recv()
604 (void) memcpy(msg, hbuf, DS_HDR_SZ); in ds_handle_recv()
605 currp = (char *)(msg) + DS_HDR_SZ; in ds_handle_recv()
614 if ((DS_HDR_SZ + read_size) != msglen) { in ds_handle_recv()
766 req = (ds_init_req_t *)(buf + DS_HDR_SZ); in ds_handle_init_req()
835 ack = (ds_init_ack_t *)(buf + DS_HDR_SZ); in ds_handle_init_ack()
989 req = (ds_reg_req_t *)(buf + DS_HDR_SZ); in ds_handle_reg_req()
[all …]
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dds_impl.h55 #define DS_HDR_SZ (sizeof (ds_hdr_t)) macro