]> git.ipfire.org Git - thirdparty/qemu.git/commit - hw/rdma/rdma_backend.c
hw/pvrdma: Add support to allow guest to configure GID table
authorYuval Shaia <yuval.shaia@oracle.com>
Fri, 21 Dec 2018 14:40:25 +0000 (16:40 +0200)
committerMarcel Apfelbaum <marcel.apfelbaum@gmail.com>
Sat, 22 Dec 2018 09:09:56 +0000 (11:09 +0200)
commit2b05705dc8ad80c09a3aa9cc70c14fb8323b0fd3
treef3d3a9f7632b9fd1dcfa8a2dbdd83de617222289
parent4a5c9903f3164cef134e7f81b361b3fa7d5c0b52
hw/pvrdma: Add support to allow guest to configure GID table

The control over the RDMA device's GID table is done by updating the
device's Ethernet function addresses.
Usually the first GID entry is determined by the MAC address, the second
by the first IPv6 address and the third by the IPv4 address. Other
entries can be added by adding more IP addresses. The opposite is the
same, i.e. whenever an address is removed, the corresponding GID entry
is removed.

The process is done by the network and RDMA stacks. Whenever an address
is added the ib_core driver is notified and calls the device driver
add_gid function which in turn update the device.

To support this in pvrdma device we need to hook into the create_bind
and destroy_bind HW commands triggered by pvrdma driver in guest.
Whenever a change is made to the pvrdma port's GID table a special QMP
message is sent to be processed by libvirt to update the address of the
backend Ethernet device.

Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com>
Reviewed-by: Marcel Apfelbaum<marcel.apfelbaum@gmail.com>
Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
hw/rdma/rdma_backend.c
hw/rdma/rdma_backend.h
hw/rdma/rdma_backend_defs.h
hw/rdma/rdma_rm.c
hw/rdma/rdma_rm.h
hw/rdma/rdma_rm_defs.h
hw/rdma/rdma_utils.h
hw/rdma/vmw/pvrdma.h
hw/rdma/vmw/pvrdma_cmd.c
hw/rdma/vmw/pvrdma_main.c
hw/rdma/vmw/pvrdma_qp_ops.c