Displaying 18 results from an estimated 18 matches for "ib_verbs".
2013 Apr 20
5
configure error using Lustre 2.3 and OFED 3.5
...#include <linux/version.h>
| #include <linux/pci.h>
| #include <linux/gfp.h>
| #include <rdma/rdma_cm.h>
| #include <rdma/ib_cm.h>
| #include <rdma/ib_verbs.h>
| #include <rdma/ib_fmr_pool.h>
|
| int
| main (void)
| {
|
| struct rdma_cm_id *cm_idi __attribute__ ((unused));
| struct rdma_conn_param conn_param __attribute__ ((unused));
| struct ib_devic...
2019 Nov 01
0
[PATCH v2 00/15] Consolidate the mmu notifier interval_tree and locking
...| 8 +-
> drivers/xen/gntdev.c | 180 ++----
> include/linux/hmm.h | 195 +------
> include/linux/mmu_notifier.h | 144 ++++-
> include/rdma/ib_umem_odp.h | 65 +--
> include/rdma/ib_verbs.h | 2 -
> kernel/fork.c | 1 -
> mm/Kconfig | 2 +-
> mm/hmm.c | 275 +--------
> mm/mmu_notifier.c | 546 ++++++++++++++++...
2016 Jun 30
2
[PATCH v5 00/44] dma-mapping: Use unsigned long for dma_attrs
...| 71 ------------
include/linux/dma-iommu.h | 6 +-
include/linux/dma-mapping.h | 128 ++++++++++++++-------
include/linux/swiotlb.h | 10 +-
include/media/videobuf2-dma-contig.h | 7 +-
include/rdma/ib_verbs.h | 8 +-
include/xen/swiotlb-xen.h | 12 +-
lib/dma-noop.c | 9 +-
lib/swiotlb.c | 13 ++-
108 files changed, 689 insertions(+), 789 deletions(-)
delete mode 100644 i...
2016 Jul 12
0
[PATCH v5 00/44] dma-mapping: Use unsigned long for dma_attrs
...t; include/linux/dma-iommu.h | 6 +-
> include/linux/dma-mapping.h | 128 ++++++++++++++-------
> include/linux/swiotlb.h | 10 +-
> include/media/videobuf2-dma-contig.h | 7 +-
> include/rdma/ib_verbs.h | 8 +-
> include/xen/swiotlb-xen.h | 12 +-
> lib/dma-noop.c | 9 +-
> lib/swiotlb.c | 13 ++-
> 108 files changed, 689 insertions(+), 789 deletions(-)
&...
2016 Jul 13
0
[PATCH v6 00/46] dma-mapping: Use unsigned long for dma_attrs
...| 6 +-
include/linux/dma-mapping.h | 128 ++++++++++++++-------
include/linux/swiotlb.h | 10 +-
include/media/videobuf2-core.h | 6 +-
include/media/videobuf2-dma-contig.h | 2 -
include/rdma/ib_verbs.h | 8 +-
include/xen/swiotlb-xen.h | 12 +-
lib/dma-noop.c | 9 +-
lib/swiotlb.c | 13 ++-
112 files changed, 694 insertions(+), 798 deletions(-)
delete mode 100644 i...
2019 Apr 13
1
[RFC 3/3] RDMA/virtio-rdma: VirtIO rdma driver
...e
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
> + */
> +
> +#ifndef __VIRTIO_RDMA__
> +#define __VIRTIO_RDMA__
> +
> +#include <linux/virtio.h>
> +#include <rdma/ib_verbs.h>
> +
> +struct virtio_rdma_info {
> + struct ib_device ib_dev;
> + struct virtio_device *vdev;
> + struct virtqueue *ctrl_vq;
> + wait_queue_head_t acked; /* arm on send to host, release on recv */
> + struct net_device *netdev;
> +};
> +
> +static inline struct v...
2016 Jun 10
1
[PATCH v4 00/44] dma-mapping: Use unsigned long for dma_attrs
...| 72 ------------
include/linux/dma-iommu.h | 6 +-
include/linux/dma-mapping.h | 128 ++++++++++++++-------
include/linux/swiotlb.h | 10 +-
include/media/videobuf2-dma-contig.h | 7 +-
include/rdma/ib_verbs.h | 8 +-
include/xen/swiotlb-xen.h | 12 +-
lib/dma-noop.c | 9 +-
lib/swiotlb.c | 13 ++-
108 files changed, 691 insertions(+), 793 deletions(-)
delete mode 100644 i...
2019 Apr 11
1
[RFC 3/3] RDMA/virtio-rdma: VirtIO rdma driver
...eived a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __VIRTIO_RDMA__
+#define __VIRTIO_RDMA__
+
+#include <linux/virtio.h>
+#include <rdma/ib_verbs.h>
+
+struct virtio_rdma_info {
+ struct ib_device ib_dev;
+ struct virtio_device *vdev;
+ struct virtqueue *ctrl_vq;
+ wait_queue_head_t acked; /* arm on send to host, release on recv */
+ struct net_device *netdev;
+};
+
+static inline struct virtio_rdma_info *to_vdev(struct ib_device *ibdev)...
2019 Apr 11
9
[RFC 0/3] VirtIO RDMA
Data center backends use more and more RDMA or RoCE devices and more and
more software runs in virtualized environment.
There is a need for a standard to enable RDMA/RoCE on Virtual Machines.
Virtio is the optimal solution since is the de-facto para-virtualizaton
technology and also because the Virtio specification
allows Hardware Vendors to support Virtio protocol natively in order to
achieve
2019 Apr 11
9
[RFC 0/3] VirtIO RDMA
Data center backends use more and more RDMA or RoCE devices and more and
more software runs in virtualized environment.
There is a need for a standard to enable RDMA/RoCE on Virtual Machines.
Virtio is the optimal solution since is the de-facto para-virtualizaton
technology and also because the Virtio specification
allows Hardware Vendors to support Virtio protocol natively in order to
achieve
2019 Nov 12
20
[PATCH hmm v3 00/14] Consolidate the mmu notifier interval_tree and locking
...rs/xen/gntdev-common.h | 8 +-
drivers/xen/gntdev.c | 179 ++----
include/linux/hmm.h | 195 +-----
include/linux/mmu_notifier.h | 147 ++++-
include/rdma/ib_umem_odp.h | 68 +--
include/rdma/ib_verbs.h | 2 -
kernel/fork.c | 1 -
mm/Kconfig | 2 +-
mm/hmm.c | 276 +--------
mm/mmu_notifier.c | 565 +++++++++++++++++-
31 files changed, 12...
2019 Oct 28
32
[PATCH v2 00/15] Consolidate the mmu notifier interval_tree and locking
...s/xen/gntdev-common.h | 8 +-
drivers/xen/gntdev.c | 180 ++----
include/linux/hmm.h | 195 +------
include/linux/mmu_notifier.h | 144 ++++-
include/rdma/ib_umem_odp.h | 65 +--
include/rdma/ib_verbs.h | 2 -
kernel/fork.c | 1 -
mm/Kconfig | 2 +-
mm/hmm.c | 275 +--------
mm/mmu_notifier.c | 546 +++++++++++++++++-
32 files changed, 12...
2016 Jun 02
52
[RFC v3 00/45] dma-mapping: Use unsigned long for dma_attrs
...| 71 ------------
include/linux/dma-iommu.h | 6 +-
include/linux/dma-mapping.h | 128 ++++++++++++++-------
include/linux/swiotlb.h | 10 +-
include/media/videobuf2-dma-contig.h | 7 +-
include/rdma/ib_verbs.h | 8 +-
include/xen/swiotlb-xen.h | 12 +-
lib/dma-noop.c | 9 +-
lib/swiotlb.c | 13 ++-
108 files changed, 689 insertions(+), 788 deletions(-)
delete mode 100644 i...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
.../magnetometer/ak8974.c | 2 +-
drivers/infiniband/core/cm.c | 14 +--
drivers/infiniband/core/cma.c | 3 +-
drivers/infiniband/core/ucma.c | 4 +-
drivers/infiniband/core/uverbs_ioctl.c | 5 +-
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 2 +-
drivers/infiniband/hw/cxgb4/cm.c | 4 +-
drivers/infiniband/hw/cxgb4/qp.c | 2 +-
drivers/infiniband/hw/hfi1/chip.c | 8 +-
drivers/infiniband/hw/hfi1/firmware.c | 16 ---
d...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
.../magnetometer/ak8974.c | 2 +-
drivers/infiniband/core/cm.c | 14 +--
drivers/infiniband/core/cma.c | 3 +-
drivers/infiniband/core/ucma.c | 4 +-
drivers/infiniband/core/uverbs_ioctl.c | 5 +-
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 2 +-
drivers/infiniband/hw/cxgb4/cm.c | 4 +-
drivers/infiniband/hw/cxgb4/qp.c | 2 +-
drivers/infiniband/hw/hfi1/chip.c | 8 +-
drivers/infiniband/hw/hfi1/firmware.c | 16 ---
d...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
.../magnetometer/ak8974.c | 2 +-
drivers/infiniband/core/cm.c | 14 +--
drivers/infiniband/core/cma.c | 3 +-
drivers/infiniband/core/ucma.c | 4 +-
drivers/infiniband/core/uverbs_ioctl.c | 5 +-
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 2 +-
drivers/infiniband/hw/cxgb4/cm.c | 4 +-
drivers/infiniband/hw/cxgb4/qp.c | 2 +-
drivers/infiniband/hw/hfi1/chip.c | 8 +-
drivers/infiniband/hw/hfi1/firmware.c | 16 ---
d...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
.../magnetometer/ak8974.c | 2 +-
drivers/infiniband/core/cm.c | 14 +--
drivers/infiniband/core/cma.c | 3 +-
drivers/infiniband/core/ucma.c | 4 +-
drivers/infiniband/core/uverbs_ioctl.c | 5 +-
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 2 +-
drivers/infiniband/hw/cxgb4/cm.c | 4 +-
drivers/infiniband/hw/cxgb4/qp.c | 2 +-
drivers/infiniband/hw/hfi1/chip.c | 8 +-
drivers/infiniband/hw/hfi1/firmware.c | 16 ---
d...
2020 Mar 11
0
[PATCH -next 000/491] treewide: use fallthrough;
.../magnetometer/ak8974.c | 2 +-
drivers/infiniband/core/cm.c | 14 +--
drivers/infiniband/core/cma.c | 3 +-
drivers/infiniband/core/ucma.c | 4 +-
drivers/infiniband/core/uverbs_ioctl.c | 5 +-
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 2 +-
drivers/infiniband/hw/cxgb4/cm.c | 4 +-
drivers/infiniband/hw/cxgb4/qp.c | 2 +-
drivers/infiniband/hw/hfi1/chip.c | 8 +-
drivers/infiniband/hw/hfi1/firmware.c | 16 ---
d...