From patchwork Thu Sep 5 09:32:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrzej Ostruszka X-Patchwork-Id: 58634 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 97F851EF67; Thu, 5 Sep 2019 11:33:02 +0200 (CEST) Received: from mail-lj1-f194.google.com (mail-lj1-f194.google.com [209.85.208.194]) by dpdk.org (Postfix) with ESMTP id AD7D61EDD0 for ; Thu, 5 Sep 2019 11:32:47 +0200 (CEST) Received: by mail-lj1-f194.google.com with SMTP id y23so1380333ljn.5 for ; Thu, 05 Sep 2019 02:32:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=gApXwU5Mr7lCBBA/zqVS/LfZzY7YW0HpPJUVU04+J/I=; b=PzAr039cIHSFlhc9jOF8KKqg0JcXpKR4+s+zaIBG4+bHrGUbyxgae2QdnSVLt+Wx0d ETVgCByBhgqsWQLVQpx6PLqq2KwBbydcKhSOe1C8oK15Yok9FYBX1sz5eufvy74GmezU 1yrJWD6qmiGCNlEmrMxNagXJZo29pug1utjFpdnAnU/xnTKkFHMjGFk4VdU7uFp4I9/A BBLiBFKyo/eJ5VEmBMF0gyvfnvnjpVQLBybxRAFFMzP1yCe52Ym8w2fXdw8cvpu5mM5Y ShrBlhi+ya4xEe6AvZvgm/EfGucCZRLaiHJCxKxuxX83j++9wwX75zPeuAlN1xtt4Hwg l7EA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=gApXwU5Mr7lCBBA/zqVS/LfZzY7YW0HpPJUVU04+J/I=; b=hQfv5Aj4/J4FaShlLvgcVfy+hzrCp/yeOzhgrOErah7o7kGUb8mG5Mrc27vhBI0s9D ggdjCgaP/KnkSrR2pfKvgyz7OlnoRpzU637eRa/JUi+mdpJMPPim2uz7weJYMsn8wWWn FdtS03LXQln4pv7+WO7d1kGZ21cok6brNUF9Dz7eE+VPj62pou8HO5wECv2VTt3mYWuV 6CDp8NOoo5Ex8A0PP5DpNwIDWOIO+7bhkz2fK6Eb1Iirse6u99UMsdxv1pEQ9ddc6Uqw DbtDFvDh0xOjtOOx5kWBPxSxJFZ8Lj/j5zNTZBXwCbk3ZdFTuE0n0uBkd4C9Fwx0Qc7r 1ERQ== X-Gm-Message-State: APjAAAWz9X60wTBOm9QRJ3Z1BskRhejB1yHp89x6s1mPVU0Pl5vUuJju c0QBQ8ctUMVAARubrxWvMVOVhBC8N31bKA== X-Google-Smtp-Source: APXvYqxxfR+TXjIP6M9+GxUQ2GhVuvbYAIKqFcQStBZ28pnHcNHucmzUnK9iVvySk2NEvxRMJ7dCfg== X-Received: by 2002:a05:651c:113c:: with SMTP id e28mr984671ljo.184.1567675967219; Thu, 05 Sep 2019 02:32:47 -0700 (PDT) Received: from localhost.localdomain (31-172-191-173.noc.fibertech.net.pl. [31.172.191.173]) by smtp.googlemail.com with ESMTPSA id b25sm363060lfa.90.2019.09.05.02.32.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 05 Sep 2019 02:32:46 -0700 (PDT) From: Andrzej Ostruszka To: dev@dpdk.org Cc: Andrzej Ostruszka Date: Thu, 5 Sep 2019 11:32:38 +0200 Message-Id: <20190905093239.27187-10-amo@semihalf.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190905093239.27187-1-amo@semihalf.com> References: <20190905093239.27187-1-amo@semihalf.com> Subject: [dpdk-dev] [PATCH 09/10] net/ifc: fix maybe-uninitialized warnings for LTO build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" During LTO build compiler reports some 'false positive' warnings about variables being possibly used uninitialized. This patch silences these warnings. Signed-off-by: Andrzej Ostruszka --- drivers/net/ifc/ifcvf_vdpa.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/drivers/net/ifc/ifcvf_vdpa.c b/drivers/net/ifc/ifcvf_vdpa.c index 8de9ef199..4cdff8712 100644 --- a/drivers/net/ifc/ifcvf_vdpa.c +++ b/drivers/net/ifc/ifcvf_vdpa.c @@ -304,8 +304,8 @@ vdpa_ifcvf_stop(struct ifcvf_internal *internal) struct ifcvf_hw *hw = &internal->hw; uint32_t i; int vid; - uint64_t features; - uint64_t log_base, log_size; + uint64_t features = 0; + uint64_t log_base = 0, log_size = 0; uint64_t len; vid = internal->vid; @@ -348,6 +348,8 @@ vdpa_enable_vfio_intr(struct ifcvf_internal *internal, bool m_rx) struct rte_vhost_vring vring; int fd; + vring.callfd = -1; + nr_vring = rte_vhost_get_vring_num(internal->vid); irq_set = (struct vfio_irq_set *)irq_set_buf; @@ -442,6 +444,7 @@ notify_relay(void *arg) } internal->epfd = epfd; + vring.kickfd = -1; for (qid = 0; qid < q_num; qid++) { ev.events = EPOLLIN | EPOLLPRI; rte_vhost_get_vhost_vring(internal->vid, qid, &vring); @@ -577,7 +580,7 @@ m_ifcvf_start(struct ifcvf_internal *internal) struct ifcvf_hw *hw = &internal->hw; uint32_t i, nr_vring; int vid, ret; - struct rte_vhost_vring vq; + struct rte_vhost_vring vq = { 0 }; void *vring_buf; uint64_t m_vring_iova = IFCVF_MEDIATED_VRING; uint64_t size; @@ -721,6 +724,7 @@ vring_relay(void *arg) } internal->epfd = epfd; + vring.kickfd = -1; for (qid = 0; qid < q_num; qid++) { ev.events = EPOLLIN | EPOLLPRI; rte_vhost_get_vhost_vring(vid, qid, &vring); @@ -930,11 +934,11 @@ ifcvf_dev_close(int vid) static int ifcvf_set_features(int vid) { - uint64_t features; + uint64_t features = 0; int did; struct internal_list *list; struct ifcvf_internal *internal; - uint64_t log_base, log_size; + uint64_t log_base = 0, log_size = 0; did = rte_vhost_get_vdpa_device_id(vid); list = find_internal_resource_by_did(did);