From patchwork Fri Dec 2 15:55:36 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Holmes X-Patchwork-Id: 86321 Delivered-To: patch@linaro.org Received: by 10.182.112.6 with SMTP id im6csp392784obb; Fri, 2 Dec 2016 07:55:46 -0800 (PST) X-Received: by 10.55.99.141 with SMTP id x135mr37244205qkb.147.1480694146145; Fri, 02 Dec 2016 07:55:46 -0800 (PST) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id b14si3273262qkb.235.2016.12.02.07.55.45; Fri, 02 Dec 2016 07:55:46 -0800 (PST) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org; dmarc=pass (p=NONE dis=NONE) header.from=linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 46E4062F52; Fri, 2 Dec 2016 15:55:45 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ip-10-142-244-252 X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=disabled version=3.4.0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id EF6D562EAD; Fri, 2 Dec 2016 15:55:41 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 25E9762F4A; Fri, 2 Dec 2016 15:55:40 +0000 (UTC) Received: from mail-qt0-f172.google.com (mail-qt0-f172.google.com [209.85.216.172]) by lists.linaro.org (Postfix) with ESMTPS id 76AD362B8E for ; Fri, 2 Dec 2016 15:55:39 +0000 (UTC) Received: by mail-qt0-f172.google.com with SMTP id c47so255631842qtc.2 for ; Fri, 02 Dec 2016 07:55:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=7yQBfmdfiCqrI4c3PZzWyDM9W31g1A6WLYsMLAXHszs=; b=eOiLR+Onxmer5uulfaeFf2et0ciwasoghuBk8eio2xodE5GFEj55Mfe82hn4ECu9bz gZb2zT5VO57rFpFOsqCMaHx7VM+ysNGPyhQ1JFTQtobbch2sMM7cBWmo2OfRQQh+eBGP /jmP55CCnuRezpSwoKyWef7qX4KERnM+/Nv03BoCXoQT6zBqzVwRI1/aLI+yeSq+Ju3S SBa+9pbGf9rLZqM2yvZt5FdjHiT0rMQEytaFVUwzzZcBWidShYMAqzYIY0/V4jTnPQr4 xxFHn546xMl1AXEmtaNwvI9JCX8Z7M/aSJcMFEaiDjywe3rMu+hhZwPPqvrons+CMW7u 7gyA== X-Gm-Message-State: AKaTC03449fh1qj9niGmIjJMOi1ENzShXKLA7q6l3Y1eI1UdgMa35n2WZoRmIOMRjj3kJ1KNsyw= X-Received: by 10.237.36.12 with SMTP id r12mr39845818qtc.97.1480694139035; Fri, 02 Dec 2016 07:55:39 -0800 (PST) Received: from localhost (c-98-221-136-245.hsd1.nj.comcast.net. [98.221.136.245]) by smtp.gmail.com with ESMTPSA id b63sm2828441qka.39.2016.12.02.07.55.38 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 02 Dec 2016 07:55:38 -0800 (PST) From: Mike Holmes To: lng-odp@lists.linaro.org Date: Fri, 2 Dec 2016 10:55:36 -0500 Message-Id: <20161202155536.29384-1-mike.holmes@linaro.org> X-Mailer: git-send-email 2.9.3 Subject: [lng-odp] [PATCH] helper: remove unused variable X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" Signed-off-by: Mike Holmes --- helper/linux.c | 1 - 1 file changed, 1 deletion(-) -- 2.9.3 Reviewed-by: Bill Fischofer diff --git a/helper/linux.c b/helper/linux.c index bb4b22c..7bd0b07 100644 --- a/helper/linux.c +++ b/helper/linux.c @@ -295,7 +295,6 @@ static int odph_linux_process_create(odph_odpthread_t *thread_tbl, int cpu, const odph_odpthread_params_t *thr_params) { - int ret; cpu_set_t cpu_set; pid_t pid;