mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -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
|
@ -350,7 +350,7 @@ static int get_fd(const char *mad, int *fd, __be64 *gid_ifid)
|
|||
static void *umad_recv_thread_func(void *args)
|
||||
{
|
||||
int rc;
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
int fd = -2;
|
||||
|
||||
msg.hdr.msg_type = RDMACM_MUX_MSG_TYPE_REQ;
|
||||
|
@ -387,7 +387,7 @@ static void *umad_recv_thread_func(void *args)
|
|||
static int read_and_process(int fd)
|
||||
{
|
||||
int rc;
|
||||
RdmaCmMuxMsg msg = {0};
|
||||
RdmaCmMuxMsg msg = {};
|
||||
struct umad_hdr *hdr;
|
||||
uint32_t *comm_id = 0;
|
||||
uint16_t attr_id;
|
||||
|
@ -744,7 +744,7 @@ static void signal_handler(int sig, siginfo_t *siginfo, void *context)
|
|||
static int init(void)
|
||||
{
|
||||
int rc;
|
||||
struct sigaction sig = {0};
|
||||
struct sigaction sig = {};
|
||||
|
||||
rc = init_listener();
|
||||
if (rc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue