mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 05:21: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
|
@ -350,7 +350,7 @@ static int get_fd(const char *mad, int *fd, __be64 *gid_ifid)
|
||||||
static void *umad_recv_thread_func(void *args)
|
static void *umad_recv_thread_func(void *args)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
int fd = -2;
|
int fd = -2;
|
||||||
|
|
||||||
msg.hdr.msg_type = RDMACM_MUX_MSG_TYPE_REQ;
|
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)
|
static int read_and_process(int fd)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
struct umad_hdr *hdr;
|
struct umad_hdr *hdr;
|
||||||
uint32_t *comm_id = 0;
|
uint32_t *comm_id = 0;
|
||||||
uint16_t attr_id;
|
uint16_t attr_id;
|
||||||
|
@ -744,7 +744,7 @@ static void signal_handler(int sig, siginfo_t *siginfo, void *context)
|
||||||
static int init(void)
|
static int init(void)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
struct sigaction sig = {0};
|
struct sigaction sig = {};
|
||||||
|
|
||||||
rc = init_listener();
|
rc = init_listener();
|
||||||
if (rc) {
|
if (rc) {
|
||||||
|
|
|
@ -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)
|
static int check_mux_op_status(CharBackend *mad_chr_be)
|
||||||
{
|
{
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
pr_dbg("Reading response\n");
|
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,
|
static int mad_send(RdmaBackendDev *backend_dev, uint8_t sgid_idx,
|
||||||
union ibv_gid *sgid, struct ibv_sge *sge, uint32_t num_sge)
|
union ibv_gid *sgid, struct ibv_sge *sge, uint32_t num_sge)
|
||||||
{
|
{
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
char *hdr, *data;
|
char *hdr, *data;
|
||||||
int ret;
|
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,
|
int rdma_backend_add_gid(RdmaBackendDev *backend_dev, const char *ifname,
|
||||||
union ibv_gid *gid)
|
union ibv_gid *gid)
|
||||||
{
|
{
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
pr_dbg("0x%llx, 0x%llx\n",
|
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,
|
int rdma_backend_del_gid(RdmaBackendDev *backend_dev, const char *ifname,
|
||||||
union ibv_gid *gid)
|
union ibv_gid *gid)
|
||||||
{
|
{
|
||||||
RdmaCmMuxMsg msg = {0};
|
RdmaCmMuxMsg msg = {};
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
pr_dbg("0x%llx, 0x%llx\n",
|
pr_dbg("0x%llx, 0x%llx\n",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue