Received: by 2002:a25:b323:0:0:0:0:0 with SMTP id l35csp737948ybj; Sat, 21 Sep 2019 10:52:13 -0700 (PDT) X-Google-Smtp-Source: APXvYqxSp5src2QVyCfHjVHR76ij+PjfrtyVflbalULcy/qozXNEycQ8SKPt1y4HSj10LBH1Pt9T X-Received: by 2002:a50:91d8:: with SMTP id h24mr15983734eda.61.1569088333680; Sat, 21 Sep 2019 10:52:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1569088333; cv=none; d=google.com; s=arc-20160816; b=q0BDPRj11SGVJd9f9ZjhJkyACc2JXOTNHgR2XrbDyFFEf8RGmyJ8B2d5HWShSW3YCP rZFJX/QtuGjnoAFjfIeRiK7xHt/3GH3INMG4HQBh+1hGOpVVyUxnwwAKrOV8v0YmzXNy WVXjk/UUehomIaSRdgjyoWVtl0IHuYbiNKxYQUmgP8pCJy2ajWOHKdMHhPqsgtio5wHH WoHTFJOs9h4KK6BfaVx1SnJ6u7Q+jznrear05HV9GSiTZi7XwZ/ku5gZFGzYdFcRiT2E lbflsHmi6yuDySpHB0nQ8sJVtXzOFyeEHiQx9xQ/haZgKLf6uPazwyAxx2T7yrMywxwP Q2rA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=Jn/6pQiefjxzlHNdS2RZpf1SHxPC0htP2wdkFxsysYs=; b=U3GDRcgllNSiuXCctfx4s5Bacsrz6qUse4PudIC4aw2+q8d4IlNU0McFnBIZgxuykJ /J3T2EIhT7gfz6M8EFrc8HDQfoe3ZrZvuvPMNXj14vxYwPJZYLCulnRffHk0jKnCtx4Q YeCvQIfcxb0NQOuzWEWirnTAsOGqUPjqX1pXIwFIY5XUDRKibB4AMi+gR8MyaGqXKJ9w Sz6yhB9E9afI3myUprzzPjDGipfxgYcK7vwERS//Vv4aM++rCR9lIX5NF4sDOY7nB9ae sdYfWTjDDAgFzPxKdN4XQqZxaJvwlUeRAHICmXjOzJH5dDWjZrwVyXLiAaky8boHcyLP T0FQ== 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 t26si2663042eju.238.2019.09.21.10.51.49; Sat, 21 Sep 2019 10:52:13 -0700 (PDT) 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 S1727776AbfITNb1 (ORCPT + 99 others); Fri, 20 Sep 2019 09:31:27 -0400 Received: from antares.kleine-koenig.org ([94.130.110.236]:44580 "EHLO antares.kleine-koenig.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727109AbfITNb1 (ORCPT ); Fri, 20 Sep 2019 09:31:27 -0400 Received: by antares.kleine-koenig.org (Postfix, from userid 1000) id 9E1197BD9EF; Fri, 20 Sep 2019 15:31:25 +0200 (CEST) From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: Tal Gilboa , Saeed Mahameed Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: [PATCH] dimlib: make DIMLIB a hidden symbol Date: Fri, 20 Sep 2019 15:31:15 +0200 Message-Id: <20190920133115.12802-1-uwe@kleine-koenig.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org According to Tal Gilboa the only benefit from DIM comes from a driver that uses it. So it doesn't make sense to make this symbol user visible, instead all drivers that use it should select it (as is already the case AFAICT). Signed-off-by: Uwe Kleine-König --- lib/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Kconfig b/lib/Kconfig index cc04124ed8f7..9fe8a21fd183 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -555,8 +555,7 @@ config SIGNATURE Implementation is done using GnuPG MPI library config DIMLIB - bool "DIM library" - default y + bool help Dynamic Interrupt Moderation library. Implements an algorithm for dynamically change CQ moderation values -- 2.23.0