mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 06:34:11 +08:00
IB/rdmavt: Alloc and dealloc ucontexts
Add the stubs to allocate and deallocate user contexts. This will be handled completely by rvt. Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
2d092e1174
commit
c4ed7d8bb0
@ -178,6 +178,26 @@ static int rvt_query_gid(struct ib_device *ibdev, u8 port,
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
/**
|
||||
* rvt_alloc_ucontext - Allocate a user context
|
||||
* @ibdev: Vers IB dev
|
||||
* @data: User data allocated
|
||||
*/
|
||||
static struct ib_ucontext *rvt_alloc_ucontext(struct ib_device *ibdev,
|
||||
struct ib_udata *udata)
|
||||
{
|
||||
return ERR_PTR(-EOPNOTSUPP);
|
||||
}
|
||||
|
||||
/**
|
||||
*rvt_dealloc_ucontext - Free a user context
|
||||
*@context - Free this
|
||||
*/
|
||||
static int rvt_dealloc_ucontext(struct ib_ucontext *context)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check driver override. If driver passes a value use it, otherwise we use our
|
||||
* own value.
|
||||
@ -197,6 +217,8 @@ int rvt_register_device(struct rvt_dev_info *rdi)
|
||||
CHECK_DRIVER_OVERRIDE(rdi, modify_port);
|
||||
CHECK_DRIVER_OVERRIDE(rdi, query_pkey);
|
||||
CHECK_DRIVER_OVERRIDE(rdi, query_gid);
|
||||
CHECK_DRIVER_OVERRIDE(rdi, alloc_ucontext);
|
||||
CHECK_DRIVER_OVERRIDE(rdi, dealloc_ucontext);
|
||||
|
||||
/* DMA Operations */
|
||||
rdi->ibdev.dma_ops =
|
||||
|
Loading…
Reference in New Issue
Block a user