mirror of
https://github.com/opnsense/src.git
synced 2026-04-09 03:16:24 -04:00
Fix for printf() compile warning when fast_reg.length is 64-bit.
Changing fast_reg.length to 64 bits is planned in the future. Krping uses 32-bit lengths internally. Sponsored by: Mellanox Technologies MFC after: 1 week
This commit is contained in:
parent
52ece7d15b
commit
d71ca0e296
1 changed files with 1 additions and 1 deletions
|
|
@ -890,7 +890,7 @@ static u32 krping_rdma_rkey(struct krping_cb *cb, u64 buf, int post_inv)
|
|||
post_inv,
|
||||
cb->fastreg_wr.wr.fast_reg.rkey,
|
||||
cb->fastreg_wr.wr.fast_reg.page_shift,
|
||||
cb->fastreg_wr.wr.fast_reg.length,
|
||||
(unsigned)cb->fastreg_wr.wr.fast_reg.length,
|
||||
(uintmax_t)cb->fastreg_wr.wr.fast_reg.iova_start,
|
||||
cb->fastreg_wr.wr.fast_reg.page_list_len);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue