Received: by 10.223.164.202 with SMTP id h10csp190704wrb; Thu, 30 Nov 2017 08:48:47 -0800 (PST) X-Google-Smtp-Source: AGs4zMZLCetwWqOUzl6i3LERalN9QK9/zccWpXucaIH4/zMr9wrxm6/7sustn2IDZn/pG+Ys33GG X-Received: by 10.159.202.139 with SMTP id p11mr3218178plo.182.1512060527381; Thu, 30 Nov 2017 08:48:47 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1512060527; cv=none; d=google.com; s=arc-20160816; b=FMFtRNYXh4mmx7yU4Uw5mGFaG3MkXj1SrU8AR4O2uwmsPX6CSggD+87Ls1emI3JXn7 JbNfWOSwYbKL+K0dlgyCUTQOd1+be12Lfi+jLdyNqk55XoKdlfPrUHbH6nO6iNCTS/L9 eCxCbch11ltmfvADkkFjNsIcZKwmbha75QaM30QKXb2Kl4qtWZR469OUgqlUB0YJr/5l QDFdL5BrvNao0WUhjhjimIuXJISXkUK1Mgz6RXw2wgD5bld0r1X9Jf0VaTxCv1AsJgHV XLUR+v78XuFowrOUusBXOeD9Rvd2O4n9W2JKFs6fm69rdX+wAiNk9bGwdEYcHHXF0quD FX8w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:thread-index:content-language :content-transfer-encoding:mime-version:message-id:date:subject :in-reply-to:references:cc:to:from:arc-authentication-results; bh=mOcpOQt3LRg1QBUsdcaVlyxtzqFEpMCX2J8e+83cy0g=; b=KlOgWd+oaK6+VfQ33BrW8iKB2iIgOr+D7dAjOlZzoUjQ2cwiJ6brGsmd7TCnNmScE2 nt/ub9lAadhaNkxzpT6GUazrs2fmyzMuOLzm2esUnK7i4sKOrCf/g9O4NfgQo8swJQEw UpFoY4gysuMErDSValzE0KpdzDtPSdRTevWYKxI3t+O4l632cU5MgZOAiBrZlHrtTaKO bseyCPa9RJBW1eRfv7n1MVbEeGUgYuVCG8/JJOUnONVldScV5U3Kq/cpBH0ADVpk/QTv wb+eaqFt+UuMukHolYkjII7O+Mxlm9nDZkeOhy1Lb6j51NntEFUEj91X4jDlUg0aovSl jNZw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s16si2109303plp.389.2017.11.30.08.48.33; Thu, 30 Nov 2017 08:48:47 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753834AbdK3Qra convert rfc822-to-8bit (ORCPT + 99 others); Thu, 30 Nov 2017 11:47:30 -0500 Received: from opengridcomputing.com ([70.118.0.34]:34300 "EHLO smtp.opengridcomputing.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753822AbdK3Qr2 (ORCPT ); Thu, 30 Nov 2017 11:47:28 -0500 X-Greylist: delayed 341 seconds by postgrey-1.27 at vger.kernel.org; Thu, 30 Nov 2017 11:47:27 EST Received: from cody (cody.ogc.int [10.10.0.239]) by smtp.opengridcomputing.com (Postfix) with ESMTPSA id 7A1F420A4C; Thu, 30 Nov 2017 10:41:45 -0600 (CST) From: "Steve Wise" To: "'Colin King'" , "'Steve Wise'" , "'Doug Ledford'" , "'Jason Gunthorpe'" , Cc: , , References: <20171130133006.19699-1-colin.king@canonical.com> In-Reply-To: <20171130133006.19699-1-colin.king@canonical.com> Subject: RE: [PATCH] iw_cxgb4: make pointer reg_workq static Date: Thu, 30 Nov 2017 10:41:50 -0600 Message-ID: <00fe01d369fa$1f325890$5d9709b0$@opengridcomputing.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT X-Mailer: Microsoft Outlook 14.0 Content-Language: en-us Thread-Index: AQH3RTnGEnie/UjMnvLYPYviJRRPY6LlaRfw Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > From: Colin Ian King > > The pointer reg_workq is local to the source and does not need to be > in global scope, so make it static. > > Cleans up sparse warning: > drivers/infiniband/hw/cxgb4/device.c:69:25: warning: symbol 'reg_workq' > was not declared. Should it be static? > > Signed-off-by: Colin Ian King Looks correct. This fixes a recent commit. Reviewed-by: Steve Wise Fixes: 1c8f1da5d851 ("iw_cxgb4: Fix possible circular dependency locking warning") Thanks, Steve. From 1585500645562870678@xxx Thu Nov 30 14:14:04 +0000 2017 X-GM-THRID: 1585497968592828029 X-Gmail-Labels: Inbox,Category Forums,HistoricalUnread