Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751837AbeAPXDW (ORCPT + 1 other); Tue, 16 Jan 2018 18:03:22 -0500 Received: from mail-oi0-f48.google.com ([209.85.218.48]:33670 "EHLO mail-oi0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751545AbeAPXDU (ORCPT ); Tue, 16 Jan 2018 18:03:20 -0500 X-Google-Smtp-Source: ACJfBot83dNLJEs/vas8NEK/QAeDxScGPysU2ACf+kAbu0V/I+LCbM/a6mxQoBziyO0AAv099J/W7ImLimKe/l0FLTw= MIME-Version: 1.0 In-Reply-To: References: <20170428211546.GA23590@linux.vnet.ibm.com> <20170429001040.GH3956@linux.vnet.ibm.com> <20170512184155.GA9482@linux.vnet.ibm.com> <20170512191005.GE3956@linux.vnet.ibm.com> <20170603035915.GA23375@linux.vnet.ibm.com> <20170603203620.GL3721@linux.vnet.ibm.com> <20180116223431.GA9671@linux.vnet.ibm.com> From: Arnd Bergmann Date: Wed, 17 Jan 2018 00:03:18 +0100 X-Google-Sender-Auth: hPKzkDVmFrczVb-76814tWeJms8 Message-ID: Subject: Re: [PATCH RFC tip/core/rcu] Make SRCU be once again optional To: "Paul E. McKenney" Cc: Nicolas Pitre , Linux Kernel Mailing List , Josh Triplett Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Tue, Jan 16, 2018 at 11:55 PM, Arnd Bergmann wrote: > > That fixed the first warning for me, doing the same thing for all three > fixed the rest Now with my workaround applied and the original randconfig that triggered the failure, I get another problem: drivers/base/power/wakeup.c:68:1: error: data definition has no type or storage class [-Werror] DEFINE_STATIC_SRCU(wakeup_srcu); Evidently there is at least one driver that uses SRCU but doesn't 'select SRCU' in Kconfig. There are probably others that just haven't been found. Arnd