Searched refs:len_op (Results 1 – 1 of 1) sorted by relevance
71 __u32 len_op; member82 static inline enum tcmu_opcode tcmu_hdr_get_op(__u32 len_op) in tcmu_hdr_get_op() argument84 return len_op & TCMU_OP_MASK; in tcmu_hdr_get_op()87 static inline void tcmu_hdr_set_op(__u32 *len_op, enum tcmu_opcode op) in tcmu_hdr_set_op() argument89 *len_op &= ~TCMU_OP_MASK; in tcmu_hdr_set_op()90 *len_op |= (op & TCMU_OP_MASK); in tcmu_hdr_set_op()93 static inline __u32 tcmu_hdr_get_len(__u32 len_op) in tcmu_hdr_get_len() argument95 return len_op & ~TCMU_OP_MASK; in tcmu_hdr_get_len()98 static inline void tcmu_hdr_set_len(__u32 *len_op, __u32 len) in tcmu_hdr_set_len() argument100 *len_op &= TCMU_OP_MASK; in tcmu_hdr_set_len()[all …]