Lines Matching refs:hdr
114 snic_io_hdr_enc(struct snic_io_hdr *hdr, u8 typ, u8 status, u32 id, u32 hid, in snic_io_hdr_enc() argument
117 hdr->type = typ; in snic_io_hdr_enc()
118 hdr->status = status; in snic_io_hdr_enc()
119 hdr->protocol = 0; in snic_io_hdr_enc()
120 hdr->hid = cpu_to_le32(hid); in snic_io_hdr_enc()
121 hdr->cmnd_id = cpu_to_le32(id); in snic_io_hdr_enc()
122 hdr->sg_cnt = cpu_to_le16(sg_cnt); in snic_io_hdr_enc()
123 hdr->init_ctx = ctx; in snic_io_hdr_enc()
124 hdr->flags = 0; in snic_io_hdr_enc()
129 snic_io_hdr_dec(struct snic_io_hdr *hdr, u8 *typ, u8 *stat, u32 *cmnd_id, in snic_io_hdr_dec() argument
132 *typ = hdr->type; in snic_io_hdr_dec()
133 *stat = hdr->status; in snic_io_hdr_dec()
134 *hid = le32_to_cpu(hdr->hid); in snic_io_hdr_dec()
135 *cmnd_id = le32_to_cpu(hdr->cmnd_id); in snic_io_hdr_dec()
136 *ctx = hdr->init_ctx; in snic_io_hdr_dec()
427 struct snic_io_hdr hdr; member
456 struct snic_io_hdr hdr; member