|
@@ -119,16 +119,7 @@ struct ib_umem *ib_umem_get(struct ib_ucontext *context, unsigned long addr,
|
|
|
umem->length = size;
|
|
|
umem->address = addr;
|
|
|
umem->page_shift = PAGE_SHIFT;
|
|
|
- /*
|
|
|
- * We ask for writable memory if any of the following
|
|
|
- * access flags are set. "Local write" and "remote write"
|
|
|
- * obviously require write access. "Remote atomic" can do
|
|
|
- * things like fetch and add, which will modify memory, and
|
|
|
- * "MW bind" can change permissions by binding a window.
|
|
|
- */
|
|
|
- umem->writable = !!(access &
|
|
|
- (IB_ACCESS_LOCAL_WRITE | IB_ACCESS_REMOTE_WRITE |
|
|
|
- IB_ACCESS_REMOTE_ATOMIC | IB_ACCESS_MW_BIND));
|
|
|
+ umem->writable = ib_access_writable(access);
|
|
|
|
|
|
if (access & IB_ACCESS_ON_DEMAND) {
|
|
|
ret = ib_umem_odp_get(context, umem, access);
|