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 X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 93FA2C4740C for ; Mon, 9 Sep 2019 21:54:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 60A7820863 for ; Mon, 9 Sep 2019 21:54:25 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="TWNtgAiF" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2406136AbfIIVyY (ORCPT ); Mon, 9 Sep 2019 17:54:24 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:52354 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726823AbfIIVyY (ORCPT ); Mon, 9 Sep 2019 17:54:24 -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:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=hXIY7px3ZKe6sRB6WWdkAcDOx60D4yEzbgEBBpLOhjQ=; b=TWNtgAiFyO20FlUIlofYi2Ofi eEiGu1Kt34gUNCT1FJhOVTrchXEZnJU+OGgyRtD2VkFno8A4oeEy/uqHP5guQEBFx8xcEwAt5mj2j 4XRf+FfpS/be4G0SUXzOW2L/pMUDwFYGE83cT9LQPMQXdUzxkWplYTqEX5u03WWkVxklNSCQqzhwX gb1QYneJT2hYDKE1V52Y+A1NuFj7gN+kxc5YZnV4QcWy2EWRIxe1HX4nH9kGyoxS8tKnQnKRFF5sZ ZBWey8PSB3EJB0hyT/MMpJzGS2TIfgFWli83vRba5Vmu2sF6wTrDHHKNGpukEpuzkjRd1sIBnlBkC bfbkDtT4w==; Received: from c-73-157-219-8.hsd1.or.comcast.net ([73.157.219.8] helo=[10.0.0.252]) by bombadil.infradead.org with esmtpsa (Exim 4.92 #3 (Red Hat Linux)) id 1i7Rc6-0003DB-9N; Mon, 09 Sep 2019 21:54:22 +0000 To: "netdev@vger.kernel.org" , LKML , David Miller Cc: Jiri Pirko , Ido Schimmel From: Randy Dunlap Subject: [PATCH] lib/Kconfig: fix OBJAGG in lib/ menu structure Message-ID: <34674398-54dc-a4d1-6052-67ad1a3b2fe9@infradead.org> Date: Mon, 9 Sep 2019 14:54:21 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap Keep the "Library routines" menu intact by moving OBJAGG into it. Otherwise OBJAGG is displayed/presented as an orphan in the various config menus. Fixes: 0a020d416d0a ("lib: introduce initial implementation of object aggregation manager") Signed-off-by: Randy Dunlap Cc: Jiri Pirko Cc: Ido Schimmel Cc: David S. Miller --- lib/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- linux-next-20190904.orig/lib/Kconfig +++ linux-next-20190904/lib/Kconfig @@ -631,6 +631,9 @@ config SBITMAP config PARMAN tristate "parman" if COMPILE_TEST +config OBJAGG + tristate "objagg" if COMPILE_TEST + config STRING_SELFTEST tristate "Test string functions" @@ -653,6 +656,3 @@ config GENERIC_LIB_CMPDI2 config GENERIC_LIB_UCMPDI2 bool - -config OBJAGG - tristate "objagg" if COMPILE_TEST