From patchwork Mon Jul 2 22:02:45 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10502523 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id CE8C76028F for ; Mon, 2 Jul 2018 22:02:50 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BD3C4289E0 for ; Mon, 2 Jul 2018 22:02:50 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B10E428C50; Mon, 2 Jul 2018 22:02:50 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5EB6A289E0 for ; Mon, 2 Jul 2018 22:02:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753544AbeGBWCu (ORCPT ); Mon, 2 Jul 2018 18:02:50 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:53748 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753476AbeGBWCt (ORCPT ); Mon, 2 Jul 2018 18:02:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=QnHmp/XNUOrkY9QAsBCbJ8ir/k7wB9p3iU+Jp2xCJMU=; b=mZNY1WKMx31KAvN9qKYkOP5x0 T4Q5TuZZtoYJDpchUSIxA9JrD94mXHoqOJQ44NgpOUWB/4uRsoI6kPXsnsD3OyDZEwzVtw1cCZMhj 4yrMulSKNE789oseX4TMkKbfLRi5q1f5jx7ZEzu3p+CSrI5pIwf5lXh11RY2C5grGKWA4N9gG9gPB NYf3Q+xVaRa18tOe8QiiJsZGK5orHn224eOAFlF04qH6TkvjqzRdT0Sr5y2LMaaxYCaAOh/ZVpPg0 TgBR5gCjQLtjCRks1IcieM3kHz2zvaAh6NbMdXE/jkBS4TanVxLRzyfwu0XqKjpi5mfRIoKTaKp2p /ETVb6FLg==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fa6uE-00065r-2a; Mon, 02 Jul 2018 22:02:46 +0000 Subject: [PATCH] Kconfig: menus: add PREEMPT options back To: Christoph Hellwig , Masahiro Yamada Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org References: <20180702144711.22111-1-hch@lst.de> <20180702144711.22111-4-hch@lst.de> From: Randy Dunlap Message-ID: Date: Mon, 2 Jul 2018 15:02:45 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180702144711.22111-4-hch@lst.de> Content-Language: en-US Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Looks like the PREEMPT symbols from kernel/Kconfig.preempt were lost, so add them back. Otherwise some of the RCU options are set differently than they should be. Signed-off-by: Randy Dunlap --- init/Kconfig | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20180702.orig/init/Kconfig +++ linux-next-20180702/init/Kconfig @@ -332,6 +332,7 @@ config AUDIT_TREE source "kernel/irq/Kconfig" source "kernel/time/Kconfig" +source "kernel/Kconfig.preempt" menu "CPU/Task time and stats accounting"