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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no 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 3C6B2C2D0DB for ; Tue, 28 Jan 2020 12:47:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F01A9206A2 for ; Tue, 28 Jan 2020 12:47:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580215673; bh=w0VRe/xYBSr1hGpMn26OZH83XuybpSHfFvesTfMzCrE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=FtwnXBUFSGBkdf4hr363jhOEff5PG0r5I2tRTmdA7I1b9bQu7/NAp7ipjF10FRDPl YpTW3GK8bSl1kSbNjCz8w+WpQ586WlG6PEhT3zaMBo1DWoKZ7AJyJaN2bjn26bfAhI VK5lRt6Jxtw4ups+BdVe0aYF/clCveJ1U5ED4NuU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725852AbgA1Mrw (ORCPT ); Tue, 28 Jan 2020 07:47:52 -0500 Received: from mail.kernel.org ([198.145.29.99]:52092 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725881AbgA1Mrw (ORCPT ); Tue, 28 Jan 2020 07:47:52 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 88DE1206A2; Tue, 28 Jan 2020 12:47:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580215672; bh=w0VRe/xYBSr1hGpMn26OZH83XuybpSHfFvesTfMzCrE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YqPIB0WDNTwbu3SR4b1viyjhELBx7fsXaet9ucIEFZWQSBQKHLTd08ppcdsCKKmpk UIxzkq6iciGU7U24yS0VO3iDWXSSEjaUiXwS79LnfhtuZy3iJQeO3mo8QV6/2PiBKE r8mSKRQn+dboJC+ZdYfjCAIbMu3CXKoFb9QAiuZM= Date: Tue, 28 Jan 2020 13:47:49 +0100 From: Greg Kroah-Hartman To: Naresh Kamboju Cc: Sasha Levin , linux- stable , lkft-triage@lists.linaro.org, Andy Shevchenko , Dmitry Torokhov Subject: Re: stable-rc 4.9.212-rc1/2e383da55e49: regressions detected in project stable v4.9.y on OE Message-ID: <20200128124749.GA2813069@kroah.com> References: <20200128115446.GA2680602@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200128115446.GA2680602@kroah.com> Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Tue, Jan 28, 2020 at 12:54:46PM +0100, Greg Kroah-Hartman wrote: > On Tue, Jan 28, 2020 at 05:14:33PM +0530, Naresh Kamboju wrote: > > stable-rc 4.9 build failed due to these build error, > > > > drivers/md/bitmap.c:1702:13: error: conflicting types for 'bitmap_free' > > static void bitmap_free(struct bitmap *bitmap) > > ^~~~~~~~~~~ > > include/linux/bitmap.h:94:13: note: previous declaration of > > 'bitmap_free' was here > > extern void bitmap_free(const unsigned long *bitmap); > > ^~~~~~~~~~~ > > scripts/Makefile.build:304: recipe for target 'drivers/md/bitmap.o' failed > > > > suspecting this patch causing this build failure on stable-rc 4.9 > > > > bitmap: Add bitmap_alloc(), bitmap_zalloc() and bitmap_free() > > commit c42b65e363ce97a828f81b59033c3558f8fa7f70 upstream. > > > > A lot of code become ugly because of open coding allocations for bitmaps. > > > > Introduce three helpers to allow users be more clear of intention > > and keep their code neat. > > > > Note, due to multiple circular dependencies we may not provide > > the helpers as inliners. For now we keep them exported and, perhaps, > > at some point in the future we will sort out header inclusion and > > inheritance. > > > > Signed-off-by: Andy Shevchenko > > Signed-off-by: Dmitry Torokhov > > Signed-off-by: Greg Kroah-Hartman > > Sorry, my fault, am fixing this up for 4.9 and 4.4 and 4.14 right now... > Will push out new -rcs when working again. Ok, should be now resolved, sorry for the mess. greg k-h