Lines Matching refs:hd
23 static void header_out(struct dlm_header *hd)
25 hd->h_version = cpu_to_le32(hd->h_version);
26 hd->h_lockspace = cpu_to_le32(hd->h_lockspace);
27 hd->h_nodeid = cpu_to_le32(hd->h_nodeid);
28 hd->h_length = cpu_to_le16(hd->h_length);
31 static void header_in(struct dlm_header *hd)
33 hd->h_version = le32_to_cpu(hd->h_version);
34 hd->h_lockspace = le32_to_cpu(hd->h_lockspace);
35 hd->h_nodeid = le32_to_cpu(hd->h_nodeid);
36 hd->h_length = le16_to_cpu(hd->h_length);