Searched refs:wqe_words (Results 1 - 1 of 1) sorted by relevance

/linux-master/drivers/infiniband/hw/irdma/
H A Ddefs.h1117 * @wqe_words: wqe addr to write
1121 static inline void set_64bit_val(__le64 *wqe_words, u32 byte_index, u64 val) argument
1123 wqe_words[byte_index >> 3] = cpu_to_le64(val);
1128 * @wqe_words: wqe addr to write
1132 static inline void set_32bit_val(__le32 *wqe_words, u32 byte_index, u32 val) argument
1134 wqe_words[byte_index >> 2] = cpu_to_le32(val);
1139 * @wqe_words: wqe addr
1143 static inline void get_64bit_val(__le64 *wqe_words, u32 byte_index, u64 *val) argument
1145 *val = le64_to_cpu(wqe_words[byte_index >> 3]);
1150 * @wqe_words
1154 get_32bit_val(__le32 *wqe_words, u32 byte_index, u32 *val) argument
[all...]

Completed in 238 milliseconds