From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (xvm-189-124.dc0.ghst.net [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4852BA0524; Fri, 8 Jan 2021 11:34:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9191C140F43; Fri, 8 Jan 2021 11:34:37 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id DB921140EFD for ; Fri, 8 Jan 2021 11:34:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610102075; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=h8j4/e20sxNRmFmz8f4X7bgl+egV0M25QfsqnWWtwOc=; b=Rc1VCvXUEg1nUMcD8Qe++7yQczZmxhmKiyocoGMmZDYNP0cb1vhOUSjcjcKVb3BWJ5PYrH EicfzwlTeiNOMN+OLraopqaGejRx4QtfXvXMuOxZYsHy5WIdLOryjtwF4YLelmM0AadeTw L3tqBOamNjyEkhiTfx5qyScMGyjGR0g= Received: from mail-vk1-f198.google.com (mail-vk1-f198.google.com [209.85.221.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-551-TsXgJFjWPmqjKuoTlhztPA-1; Fri, 08 Jan 2021 05:34:33 -0500 X-MC-Unique: TsXgJFjWPmqjKuoTlhztPA-1 Received: by mail-vk1-f198.google.com with SMTP id d202so5273552vkd.4 for ; Fri, 08 Jan 2021 02:34:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=h8j4/e20sxNRmFmz8f4X7bgl+egV0M25QfsqnWWtwOc=; b=PbfaCBdpO1p6umBuJMWjP9j+cq7XTjWXqF45Dlt7nPYWiTtsLXVo0bG0nhzjF3IbaS aYE+kxJgEFWjrJIYyB4DpnhmuOgzoFaYau9Ou+oIg+8+Rc8G5VBN5RPIGIJb+5WdHgdZ ZSURt+QrSIHlYGrjMFwSF67NJ7gZs62fqgtHUKf+y4ICZIRBk5zin1OSDBtVXIB/izB1 gDXwW/a3N5n+Aty56eDxf+eK5fx3FNbd+C9JGDgJ+Yby1AQlmY6Qijl7MPBilPQoCpJH 2TghiAJUlS2a9VR/Wwu59/oltbwXDLwka6qWi1IgEWSB5Fzx8sIyshHPHIlqmU4y70f9 oxkw== X-Gm-Message-State: AOAM530vYkVlVZmtD/lYmHFUzEE+gF9u7PE1g/QhfiFTUrNDbPjJFihA b57HPHVRueR+dUNZM2HKilBYjacJTV1uijXqgQRpFTdnqFPirD6RLFAo+P0Dv6O96eZdbhDEOoP CmyhtW1Ti1V7uUjOgGws= X-Received: by 2002:ab0:6b:: with SMTP id 98mr2248008uai.86.1610102073237; Fri, 08 Jan 2021 02:34:33 -0800 (PST) X-Google-Smtp-Source: ABdhPJzxz+YKuoNEBk+mX7q8EMv1FWhfDv019W5hWG2bJAQEVCpb+tVNcKBKjIH46RfjQXdengJuoiNq8pIx20kPIIM= X-Received: by 2002:ab0:6b:: with SMTP id 98mr2248000uai.86.1610102073091; Fri, 08 Jan 2021 02:34:33 -0800 (PST) MIME-Version: 1.0 References: <20200824094021.2323605-1-ferruh.yigit@intel.com> <20201119115900.4095566-1-ferruh.yigit@intel.com> <20201119115900.4095566-7-ferruh.yigit@intel.com> In-Reply-To: <20201119115900.4095566-7-ferruh.yigit@intel.com> From: David Marchand Date: Fri, 8 Jan 2021 11:34:21 +0100 Message-ID: To: Ferruh Yigit Cc: dev , Chas Williams , "Min Hu (Connor)" , Tomasz Kulasek , Declan Doherty , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [v21.02 v3 06/10] net/bonding: remove local variable shadowing outer one X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" On Thu, Nov 19, 2020 at 1:01 PM Ferruh Yigit wrote: > > 'retval' is already defined in the function scope, removing the 'retval' > in the block scope. > > Fixes: 112891cd27e5 ("net/bonding: add dedicated HW queues for LACP control") > Cc: stable@dpdk.org > > Signed-off-by: Ferruh Yigit Reviewed-by: David Marchand -- David Marchand