Commit f64705b8 authored by Jason Gunthorpe's avatar Jason Gunthorpe

RDMA/ocrdma: Fix structure layout for ocrdma_alloc_pd

The udata's for alloc_pd cannot contain u64s due to alignment
constraints. Switch the two never-used u64's to arrays of u32 to reduce
the required struct alignment to 4 bytes.

These reserved fields are totally unnecessary, never written and never
read.
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent f215a3d2
...@@ -65,7 +65,7 @@ struct ocrdma_alloc_ucontext_resp { ...@@ -65,7 +65,7 @@ struct ocrdma_alloc_ucontext_resp {
}; };
struct ocrdma_alloc_pd_ureq { struct ocrdma_alloc_pd_ureq {
__u64 rsvd1; __u32 rsvd[2];
}; };
struct ocrdma_alloc_pd_uresp { struct ocrdma_alloc_pd_uresp {
...@@ -73,7 +73,7 @@ struct ocrdma_alloc_pd_uresp { ...@@ -73,7 +73,7 @@ struct ocrdma_alloc_pd_uresp {
__u32 dpp_enabled; __u32 dpp_enabled;
__u32 dpp_page_addr_hi; __u32 dpp_page_addr_hi;
__u32 dpp_page_addr_lo; __u32 dpp_page_addr_lo;
__u64 rsvd1; __u32 rsvd[2];
}; };
struct ocrdma_create_cq_ureq { struct ocrdma_create_cq_ureq {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment