-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
huge
rdma_recv_block_type no effect issue. (#2326)
It has no effect for `huge` type of recv_block_size which is as large as 2^21, because the `block_size` variable is defined as type `uint16_t`, its maximum value is 2^16. So, change the type of `block_size` to `uint32_t` with relevant updates. Signed-off-by: Lijin Xiong <lijin.xiong@zstack.io> Co-authored-by: Lijin Xiong <lijin.xiong@zstack.io>
- Loading branch information
1 parent
e7d75c6
commit d142274
Showing
3 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters