From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9676FC4332F for ; Tue, 22 Nov 2022 14:27:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233872AbiKVO1d (ORCPT ); Tue, 22 Nov 2022 09:27:33 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46032 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233697AbiKVO1a (ORCPT ); Tue, 22 Nov 2022 09:27:30 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 78AFB2FD for ; Tue, 22 Nov 2022 06:27:26 -0800 (PST) From: John Ogness DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1669127244; 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=2P8A3XV3P5YSNLerOfTWhF9UZrwHIZ4tZ207o+/wjSA=; b=gcY+ynVjz6rGwbUu5W8l8yCCN7LrTUhmrOn7Q8IsEeVkVCT5eYVo1PiAL47V+IU0qa2+0B v828zY7r0Px+A9sK42X6iG+92Fh2+ZzsjsgmcRZwT54nGwkL5QQswD1wDKgA5mIoqdFarb K+tx10ACHMrQH7kcBLpkq1E6/7tpHhQmQg2PQQsQNOydPMxHVF3+qKqlw803mi0dgY/BjR tOTxomGuVu+5DuNlzjnQhtAcxvqmpBye6Z4v7Rn9kcrO8icELGD79vpIWytr5nYUmznyq9 JwNJrPRpfnaRq9UhgiW3fn52sIbKNIL9DMo8glVX3uqI/VhLHlsWeterW+mJTg== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1669127244; 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=2P8A3XV3P5YSNLerOfTWhF9UZrwHIZ4tZ207o+/wjSA=; b=Tvhhh6wLp/q9lULTAjNqKBC64EZ7UoEMAmUDnk0MyeZyyw0z9YohVgkcPvBHfON3vTcFm2 tnWOl6fTs3LGYuCg== To: Petr Mladek Cc: "Paul E . McKenney" , Naresh Kamboju , open list , Nathan Chancellor , Sergey Senozhatsky Subject: Re: next-20221122: tinyconfig: ppc n s390: kernel/printk/printk.c:95:1: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Werror,-Wimplicit-int] In-Reply-To: References: Date: Tue, 22 Nov 2022 15:33:16 +0106 Message-ID: <87o7szoyij.fsf@jogness.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Petr, On 2022-11-22, Naresh Kamboju wrote: > Today's Linux next 20221122 tag clang-15 tinyconfig builds fails on > powerpc and s390 architectures. The problem is that CONFIG_SRCU is not selected. This must be selected by any modules that requires SRCU. However, printk.c is _always_ built into the kernel (even if !CONFIG_PRINTK). The registration of consoles and the console list (which uses SRCU) is _always_ built into the kernel. So should CONFIG_SRCU now always be active? @paulmck: Do you have a problem with permanently activating CONFIG_SRCU? John Ogness