mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
hw/rdma: modify struct initialization
Do not initialize structs with {0} since some CLANG versions do not support it. Use {} construct instead. Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com> Tested-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20190118124614.24548-3-marcel.apfelbaum@gmail.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
This commit is contained in:
parent
4a3d55a097
commit
555b3d67bc
2 changed files with 7 additions and 7 deletions
|
@ -179,7 +179,7 @@ static inline int rdmacm_mux_can_process_async(RdmaBackendDev *backend_dev)
|
|||
|
||||
static int check_mux_op_status(CharBackend *mad_chr_be)
|
||||
{
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
int ret;
|
||||
|
||||
pr_dbg("Reading response\n");
|
||||
|
@ -376,7 +376,7 @@ static int build_host_sge_array(RdmaDeviceResources *rdma_dev_res,
|
|||
static int mad_send(RdmaBackendDev *backend_dev, uint8_t sgid_idx,
|
||||
union ibv_gid *sgid, struct ibv_sge *sge, uint32_t num_sge)
|
||||
{
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
char *hdr, *data;
|
||||
int ret;
|
||||
|
||||
|
@ -1097,7 +1097,7 @@ int rdma_backend_get_gid_index(RdmaBackendDev *backend_dev,
|
|||
int rdma_backend_add_gid(RdmaBackendDev *backend_dev, const char *ifname,
|
||||
union ibv_gid *gid)
|
||||
{
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
int ret;
|
||||
|
||||
pr_dbg("0x%llx, 0x%llx\n",
|
||||
|
@ -1123,7 +1123,7 @@ int rdma_backend_add_gid(RdmaBackendDev *backend_dev, const char *ifname,
|
|||
int rdma_backend_del_gid(RdmaBackendDev *backend_dev, const char *ifname,
|
||||
union ibv_gid *gid)
|
||||
{
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
int ret;
|
||||
|
||||
pr_dbg("0x%llx, 0x%llx\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue