Merge branch 'k.o/for-4.12' into k.o/for-4.12-rdma-netdevice
This commit is contained in:
@@ -80,6 +80,8 @@ enum {
|
||||
IB_OPCODE_UD = 0x60,
|
||||
/* per IBTA 1.3 vol 1 Table 38, A10.3.2 */
|
||||
IB_OPCODE_CNP = 0x80,
|
||||
/* Manufacturer specific */
|
||||
IB_OPCODE_MSP = 0xe0,
|
||||
|
||||
/* operations -- just used to define real constants */
|
||||
IB_OPCODE_SEND_FIRST = 0x00,
|
||||
|
||||
@@ -1357,6 +1357,17 @@ struct ib_fmr_attr {
|
||||
|
||||
struct ib_umem;
|
||||
|
||||
enum rdma_remove_reason {
|
||||
/* Userspace requested uobject deletion. Call could fail */
|
||||
RDMA_REMOVE_DESTROY,
|
||||
/* Context deletion. This call should delete the actual object itself */
|
||||
RDMA_REMOVE_CLOSE,
|
||||
/* Driver is being hot-unplugged. This call should delete the actual object itself */
|
||||
RDMA_REMOVE_DRIVER_REMOVE,
|
||||
/* Context is being cleaned-up, but commit was just completed */
|
||||
RDMA_REMOVE_DURING_CLEANUP,
|
||||
};
|
||||
|
||||
struct ib_rdmacg_object {
|
||||
#ifdef CONFIG_CGROUP_RDMA
|
||||
struct rdma_cgroup *cg; /* owner rdma cgroup */
|
||||
@@ -1365,19 +1376,16 @@ struct ib_rdmacg_object {
|
||||
|
||||
struct ib_ucontext {
|
||||
struct ib_device *device;
|
||||
struct list_head pd_list;
|
||||
struct list_head mr_list;
|
||||
struct list_head mw_list;
|
||||
struct list_head cq_list;
|
||||
struct list_head qp_list;
|
||||
struct list_head srq_list;
|
||||
struct list_head ah_list;
|
||||
struct list_head xrcd_list;
|
||||
struct list_head rule_list;
|
||||
struct list_head wq_list;
|
||||
struct list_head rwq_ind_tbl_list;
|
||||
struct ib_uverbs_file *ufile;
|
||||
int closing;
|
||||
|
||||
/* locking the uobjects_list */
|
||||
struct mutex uobjects_lock;
|
||||
struct list_head uobjects;
|
||||
/* protects cleanup process from other actions */
|
||||
struct rw_semaphore cleanup_rwsem;
|
||||
enum rdma_remove_reason cleanup_reason;
|
||||
|
||||
struct pid *tgid;
|
||||
#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
|
||||
struct rb_root umem_tree;
|
||||
@@ -1407,9 +1415,16 @@ struct ib_uobject {
|
||||
struct ib_rdmacg_object cg_obj; /* rdmacg object */
|
||||
int id; /* index into kernel idr */
|
||||
struct kref ref;
|
||||
struct rw_semaphore mutex; /* protects .live */
|
||||
atomic_t usecnt; /* protects exclusive access */
|
||||
struct rcu_head rcu; /* kfree_rcu() overhead */
|
||||
int live;
|
||||
|
||||
const struct uverbs_obj_type *type;
|
||||
};
|
||||
|
||||
struct ib_uobject_file {
|
||||
struct ib_uobject uobj;
|
||||
/* ufile contains the lock between context release and file close */
|
||||
struct ib_uverbs_file *ufile;
|
||||
};
|
||||
|
||||
struct ib_udata {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define DEF_RDMAVT_INCQP_H
|
||||
|
||||
/*
|
||||
* Copyright(c) 2016 Intel Corporation.
|
||||
* Copyright(c) 2016, 2017 Intel Corporation.
|
||||
*
|
||||
* This file is provided under a dual BSD/GPLv2 license. When using or
|
||||
* redistributing this file, you may do so under either license.
|
||||
@@ -526,7 +526,6 @@ static inline void rvt_qp_wqe_reserve(
|
||||
struct rvt_qp *qp,
|
||||
struct rvt_swqe *wqe)
|
||||
{
|
||||
wqe->wr.send_flags |= RVT_SEND_RESERVE_USED;
|
||||
atomic_inc(&qp->s_reserved_used);
|
||||
}
|
||||
|
||||
@@ -550,7 +549,6 @@ static inline void rvt_qp_wqe_unreserve(
|
||||
struct rvt_swqe *wqe)
|
||||
{
|
||||
if (unlikely(wqe->wr.send_flags & RVT_SEND_RESERVE_USED)) {
|
||||
wqe->wr.send_flags &= ~RVT_SEND_RESERVE_USED;
|
||||
atomic_dec(&qp->s_reserved_used);
|
||||
/* insure no compiler re-order up to s_last change */
|
||||
smp_mb__after_atomic();
|
||||
@@ -574,6 +572,7 @@ extern const enum ib_wc_opcode ib_rvt_wc_opcode[];
|
||||
static inline void rvt_qp_swqe_complete(
|
||||
struct rvt_qp *qp,
|
||||
struct rvt_swqe *wqe,
|
||||
enum ib_wc_opcode opcode,
|
||||
enum ib_wc_status status)
|
||||
{
|
||||
if (unlikely(wqe->wr.send_flags & RVT_SEND_RESERVE_USED))
|
||||
@@ -586,7 +585,7 @@ static inline void rvt_qp_swqe_complete(
|
||||
memset(&wc, 0, sizeof(wc));
|
||||
wc.wr_id = wqe->wr.wr_id;
|
||||
wc.status = status;
|
||||
wc.opcode = ib_rvt_wc_opcode[wqe->wr.opcode];
|
||||
wc.opcode = opcode;
|
||||
wc.qp = &qp->ibqp;
|
||||
wc.byte_len = wqe->length;
|
||||
rvt_cq_enter(ibcq_to_rvtcq(qp->ibqp.send_cq), &wc,
|
||||
|
||||
114
include/rdma/uverbs_std_types.h
Normal file
114
include/rdma/uverbs_std_types.h
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright (c) 2017, Mellanox Technologies inc. All rights reserved.
|
||||
*
|
||||
* This software is available to you under a choice of one of two
|
||||
* licenses. You may choose to be licensed under the terms of the GNU
|
||||
* General Public License (GPL) Version 2, available from the file
|
||||
* COPYING in the main directory of this source tree, or the
|
||||
* OpenIB.org BSD license below:
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or
|
||||
* without modification, are permitted provided that the following
|
||||
* conditions are met:
|
||||
*
|
||||
* - Redistributions of source code must retain the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer.
|
||||
*
|
||||
* - Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _UVERBS_STD_TYPES__
|
||||
#define _UVERBS_STD_TYPES__
|
||||
|
||||
#include <rdma/uverbs_types.h>
|
||||
|
||||
extern const struct uverbs_obj_fd_type uverbs_type_attrs_comp_channel;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_cq;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_qp;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_rwq_ind_table;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_wq;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_srq;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_ah;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_flow;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_mr;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_mw;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_pd;
|
||||
extern const struct uverbs_obj_idr_type uverbs_type_attrs_xrcd;
|
||||
|
||||
static inline struct ib_uobject *__uobj_get(const struct uverbs_obj_type *type,
|
||||
bool write,
|
||||
struct ib_ucontext *ucontext,
|
||||
int id)
|
||||
{
|
||||
return rdma_lookup_get_uobject(type, ucontext, id, write);
|
||||
}
|
||||
|
||||
#define uobj_get_type(_type) uverbs_type_attrs_##_type.type
|
||||
|
||||
#define uobj_get_read(_type, _id, _ucontext) \
|
||||
__uobj_get(&(_type), false, _ucontext, _id)
|
||||
|
||||
#define uobj_get_obj_read(_type, _id, _ucontext) \
|
||||
({ \
|
||||
struct ib_uobject *uobj = \
|
||||
__uobj_get(&uobj_get_type(_type), \
|
||||
false, _ucontext, _id); \
|
||||
\
|
||||
(struct ib_##_type *)(IS_ERR(uobj) ? NULL : uobj->object); \
|
||||
})
|
||||
|
||||
#define uobj_get_write(_type, _id, _ucontext) \
|
||||
__uobj_get(&(_type), true, _ucontext, _id)
|
||||
|
||||
static inline void uobj_put_read(struct ib_uobject *uobj)
|
||||
{
|
||||
rdma_lookup_put_uobject(uobj, false);
|
||||
}
|
||||
|
||||
#define uobj_put_obj_read(_obj) \
|
||||
uobj_put_read((_obj)->uobject)
|
||||
|
||||
static inline void uobj_put_write(struct ib_uobject *uobj)
|
||||
{
|
||||
rdma_lookup_put_uobject(uobj, true);
|
||||
}
|
||||
|
||||
static inline int __must_check uobj_remove_commit(struct ib_uobject *uobj)
|
||||
{
|
||||
return rdma_remove_commit_uobject(uobj);
|
||||
}
|
||||
|
||||
static inline void uobj_alloc_commit(struct ib_uobject *uobj)
|
||||
{
|
||||
rdma_alloc_commit_uobject(uobj);
|
||||
}
|
||||
|
||||
static inline void uobj_alloc_abort(struct ib_uobject *uobj)
|
||||
{
|
||||
rdma_alloc_abort_uobject(uobj);
|
||||
}
|
||||
|
||||
static inline struct ib_uobject *__uobj_alloc(const struct uverbs_obj_type *type,
|
||||
struct ib_ucontext *ucontext)
|
||||
{
|
||||
return rdma_alloc_begin_uobject(type, ucontext);
|
||||
}
|
||||
|
||||
#define uobj_alloc(_type, ucontext) \
|
||||
__uobj_alloc(&(_type), ucontext)
|
||||
|
||||
#endif
|
||||
|
||||
172
include/rdma/uverbs_types.h
Normal file
172
include/rdma/uverbs_types.h
Normal file
@@ -0,0 +1,172 @@
|
||||
/*
|
||||
* Copyright (c) 2017, Mellanox Technologies inc. All rights reserved.
|
||||
*
|
||||
* This software is available to you under a choice of one of two
|
||||
* licenses. You may choose to be licensed under the terms of the GNU
|
||||
* General Public License (GPL) Version 2, available from the file
|
||||
* COPYING in the main directory of this source tree, or the
|
||||
* OpenIB.org BSD license below:
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or
|
||||
* without modification, are permitted provided that the following
|
||||
* conditions are met:
|
||||
*
|
||||
* - Redistributions of source code must retain the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer.
|
||||
*
|
||||
* - Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following
|
||||
* disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _UVERBS_TYPES_
|
||||
#define _UVERBS_TYPES_
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <rdma/ib_verbs.h>
|
||||
|
||||
struct uverbs_obj_type;
|
||||
|
||||
struct uverbs_obj_type_class {
|
||||
/*
|
||||
* Get an ib_uobject that corresponds to the given id from ucontext,
|
||||
* These functions could create or destroy objects if required.
|
||||
* The action will be finalized only when commit, abort or put fops are
|
||||
* called.
|
||||
* The flow of the different actions is:
|
||||
* [alloc]: Starts with alloc_begin. The handlers logic is than
|
||||
* executed. If the handler is successful, alloc_commit
|
||||
* is called and the object is inserted to the repository.
|
||||
* Once alloc_commit completes the object is visible to
|
||||
* other threads and userspace.
|
||||
e Otherwise, alloc_abort is called and the object is
|
||||
* destroyed.
|
||||
* [lookup]: Starts with lookup_get which fetches and locks the
|
||||
* object. After the handler finished using the object, it
|
||||
* needs to call lookup_put to unlock it. The exclusive
|
||||
* flag indicates if the object is locked for exclusive
|
||||
* access.
|
||||
* [remove]: Starts with lookup_get with exclusive flag set. This
|
||||
* locks the object for exclusive access. If the handler
|
||||
* code completed successfully, remove_commit is called
|
||||
* and the ib_uobject is removed from the context's
|
||||
* uobjects repository and put. The object itself is
|
||||
* destroyed as well. Once remove succeeds new krefs to
|
||||
* the object cannot be acquired by other threads or
|
||||
* userspace and the hardware driver is removed from the
|
||||
* object. Other krefs on the object may still exist.
|
||||
* If the handler code failed, lookup_put should be
|
||||
* called. This callback is used when the context
|
||||
* is destroyed as well (process termination,
|
||||
* reset flow).
|
||||
*/
|
||||
struct ib_uobject *(*alloc_begin)(const struct uverbs_obj_type *type,
|
||||
struct ib_ucontext *ucontext);
|
||||
void (*alloc_commit)(struct ib_uobject *uobj);
|
||||
void (*alloc_abort)(struct ib_uobject *uobj);
|
||||
|
||||
struct ib_uobject *(*lookup_get)(const struct uverbs_obj_type *type,
|
||||
struct ib_ucontext *ucontext, int id,
|
||||
bool exclusive);
|
||||
void (*lookup_put)(struct ib_uobject *uobj, bool exclusive);
|
||||
/*
|
||||
* Must be called with the exclusive lock held. If successful uobj is
|
||||
* invalid on return. On failure uobject is left completely
|
||||
* unchanged
|
||||
*/
|
||||
int __must_check (*remove_commit)(struct ib_uobject *uobj,
|
||||
enum rdma_remove_reason why);
|
||||
u8 needs_kfree_rcu;
|
||||
};
|
||||
|
||||
struct uverbs_obj_type {
|
||||
const struct uverbs_obj_type_class * const type_class;
|
||||
size_t obj_size;
|
||||
unsigned int destroy_order;
|
||||
};
|
||||
|
||||
/*
|
||||
* Objects type classes which support a detach state (object is still alive but
|
||||
* it's not attached to any context need to make sure:
|
||||
* (a) no call through to a driver after a detach is called
|
||||
* (b) detach isn't called concurrently with context_cleanup
|
||||
*/
|
||||
|
||||
struct uverbs_obj_idr_type {
|
||||
/*
|
||||
* In idr based objects, uverbs_obj_type_class points to a generic
|
||||
* idr operations. In order to specialize the underlying types (e.g. CQ,
|
||||
* QPs, etc.), we add destroy_object specific callbacks.
|
||||
*/
|
||||
struct uverbs_obj_type type;
|
||||
|
||||
/* Free driver resources from the uobject, make the driver uncallable,
|
||||
* and move the uobject to the detached state. If the object was
|
||||
* destroyed by the user's request, a failure should leave the uobject
|
||||
* completely unchanged.
|
||||
*/
|
||||
int __must_check (*destroy_object)(struct ib_uobject *uobj,
|
||||
enum rdma_remove_reason why);
|
||||
};
|
||||
|
||||
struct ib_uobject *rdma_lookup_get_uobject(const struct uverbs_obj_type *type,
|
||||
struct ib_ucontext *ucontext,
|
||||
int id, bool exclusive);
|
||||
void rdma_lookup_put_uobject(struct ib_uobject *uobj, bool exclusive);
|
||||
struct ib_uobject *rdma_alloc_begin_uobject(const struct uverbs_obj_type *type,
|
||||
struct ib_ucontext *ucontext);
|
||||
void rdma_alloc_abort_uobject(struct ib_uobject *uobj);
|
||||
int __must_check rdma_remove_commit_uobject(struct ib_uobject *uobj);
|
||||
int rdma_alloc_commit_uobject(struct ib_uobject *uobj);
|
||||
|
||||
struct uverbs_obj_fd_type {
|
||||
/*
|
||||
* In fd based objects, uverbs_obj_type_ops points to generic
|
||||
* fd operations. In order to specialize the underlying types (e.g.
|
||||
* completion_channel), we use fops, name and flags for fd creation.
|
||||
* context_closed is called when the context is closed either when
|
||||
* the driver is removed or the process terminated.
|
||||
*/
|
||||
struct uverbs_obj_type type;
|
||||
int (*context_closed)(struct ib_uobject_file *uobj_file,
|
||||
enum rdma_remove_reason why);
|
||||
const struct file_operations *fops;
|
||||
const char *name;
|
||||
int flags;
|
||||
};
|
||||
|
||||
extern const struct uverbs_obj_type_class uverbs_idr_class;
|
||||
extern const struct uverbs_obj_type_class uverbs_fd_class;
|
||||
|
||||
#define UVERBS_BUILD_BUG_ON(cond) (sizeof(char[1 - 2 * !!(cond)]) - \
|
||||
sizeof(char))
|
||||
#define UVERBS_TYPE_ALLOC_FD(_size, _order) \
|
||||
{ \
|
||||
.destroy_order = _order, \
|
||||
.type_class = &uverbs_fd_class, \
|
||||
.obj_size = (_size) + \
|
||||
UVERBS_BUILD_BUG_ON((_size) < \
|
||||
sizeof(struct ib_uobject_file)),\
|
||||
}
|
||||
#define UVERBS_TYPE_ALLOC_IDR_SZ(_size, _order) \
|
||||
{ \
|
||||
.destroy_order = _order, \
|
||||
.type_class = &uverbs_idr_class, \
|
||||
.obj_size = (_size) + \
|
||||
UVERBS_BUILD_BUG_ON((_size) < \
|
||||
sizeof(struct ib_uobject)), \
|
||||
}
|
||||
#define UVERBS_TYPE_ALLOC_IDR(_order) \
|
||||
UVERBS_TYPE_ALLOC_IDR_SZ(sizeof(struct ib_uobject), _order)
|
||||
#endif
|
||||
Reference in New Issue
Block a user