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=-6.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=unavailable 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 C91ECC41514 for ; Mon, 2 Sep 2019 18:11:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ADF1621744 for ; Mon, 2 Sep 2019 18:11:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726873AbfIBSLu (ORCPT ); Mon, 2 Sep 2019 14:11:50 -0400 Received: from smtprelay0176.hostedemail.com ([216.40.44.176]:58928 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726448AbfIBSLt (ORCPT ); Mon, 2 Sep 2019 14:11:49 -0400 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay06.hostedemail.com (Postfix) with ESMTP id BF9D618224D8A; Mon, 2 Sep 2019 18:11:47 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: heat65_83e2ed7ab5f20 X-Filterd-Recvd-Size: 3481 Received: from XPS-9350.home (unknown [47.151.137.30]) (Authenticated sender: joe@perches.com) by omf10.hostedemail.com (Postfix) with ESMTPA; Mon, 2 Sep 2019 18:11:46 +0000 (UTC) Message-ID: Subject: Re: linux-next: Tree for Sep 2 (exfat) From: Joe Perches To: Randy Dunlap , Greg KH Cc: Stephen Rothwell , Linux Next Mailing List , Linux Kernel Mailing List , Valdis Kletnieks , "devel@driverdev.osuosl.org" , Linux FS Devel Date: Mon, 02 Sep 2019 11:11:45 -0700 In-Reply-To: <13e2db80-0c89-0f36-6876-f9639f0d30ab@infradead.org> References: <20190902224310.208575dc@canb.auug.org.au> <20190902174631.GB31445@kroah.com> <13e2db80-0c89-0f36-6876-f9639f0d30ab@infradead.org> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.32.1-2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2019-09-02 at 11:07 -0700, Randy Dunlap wrote: > On 9/2/19 10:46 AM, Greg KH wrote: > > On Mon, Sep 02, 2019 at 10:39:39AM -0700, Randy Dunlap wrote: > > > On 9/2/19 5:43 AM, Stephen Rothwell wrote: > > > > Hi all, > > > > > > > > News: I will only be doing 2 more releases before I leave for Kernel > > > > Summit (there may be some reports on Thursday, but I doubt I will have > > > > time to finish the full release) and then no more until Sept 30. > > > > > > > > Changes since 20190830: > > > > > > > > > > Hi, > > > I am seeing lots of exfat build errors when CONFIG_BLOCK is not set/enabled. > > > Maybe its Kconfig should also say > > > depends on BLOCK > > > ? > > > > Here's what I committed to my tree: > > > > > > From e2b880d3d1afaa5cad108c29be3e307b1917d195 Mon Sep 17 00:00:00 2001 > > From: Greg Kroah-Hartman > > Date: Mon, 2 Sep 2019 19:45:06 +0200 > > Subject: staging: exfat: make exfat depend on BLOCK > > > > This should fix a build error in some configurations when CONFIG_BLOCK > > is not selected. Also properly set the dependancy for no FAT support at > > the same time. > > > > Reported-by: Randy Dunlap > > Cc: Valdis Kletnieks > > Signed-off-by: Greg Kroah-Hartman > > That works. Thanks. > Acked-by: Randy Dunlap # build-tested > > > --- > > drivers/staging/exfat/Kconfig | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/drivers/staging/exfat/Kconfig b/drivers/staging/exfat/Kconfig > > index f52129c67f97..290dbfc7ace1 100644 > > --- a/drivers/staging/exfat/Kconfig > > +++ b/drivers/staging/exfat/Kconfig > > @@ -1,11 +1,13 @@ > > config EXFAT_FS > > tristate "exFAT fs support" > > + depends on BLOCK > > select NLS > > help > > This adds support for the exFAT file system. > > > > config EXFAT_DONT_MOUNT_VFAT > > bool "Prohibit mounting of fat/vfat filesysems by exFAT" > > + depends on EXFAT_FS > > default y > > help > > By default, the exFAT driver will only mount exFAT filesystems, and refuse I think this last one is backwards and should be config EXFAT_ALLOW_MOUNT_VFAT and default n > > 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=-6.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=unavailable 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 B9259C3A59E for ; Mon, 2 Sep 2019 18:51:40 +0000 (UTC) Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7FE0B216C8 for ; Mon, 2 Sep 2019 18:51:40 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7FE0B216C8 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=perches.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=driverdev-devel-bounces@linuxdriverproject.org Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4024D861F1; Mon, 2 Sep 2019 18:51:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZgVCUmuNtvlS; Mon, 2 Sep 2019 18:51:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 956A086113; Mon, 2 Sep 2019 18:51:36 +0000 (UTC) Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 193C81BF3E9 for ; Mon, 2 Sep 2019 18:51:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 13A8B8643F for ; Mon, 2 Sep 2019 18:51:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZEwqy5dBuCLx for ; Mon, 2 Sep 2019 18:51:34 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtprelay.hostedemail.com (smtprelay0121.hostedemail.com [216.40.44.121]) by whitealder.osuosl.org (Postfix) with ESMTPS id D35AB86165 for ; Mon, 2 Sep 2019 18:51:33 +0000 (UTC) Received: from smtprelay.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by smtpgrave07.hostedemail.com (Postfix) with ESMTP id 7942B18027A9B for ; Mon, 2 Sep 2019 18:11:50 +0000 (UTC) Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay06.hostedemail.com (Postfix) with ESMTP id BF9D618224D8A; Mon, 2 Sep 2019 18:11:47 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: heat65_83e2ed7ab5f20 X-Filterd-Recvd-Size: 3481 Received: from XPS-9350.home (unknown [47.151.137.30]) (Authenticated sender: joe@perches.com) by omf10.hostedemail.com (Postfix) with ESMTPA; Mon, 2 Sep 2019 18:11:46 +0000 (UTC) Message-ID: Subject: Re: linux-next: Tree for Sep 2 (exfat) From: Joe Perches To: Randy Dunlap , Greg KH Date: Mon, 02 Sep 2019 11:11:45 -0700 In-Reply-To: <13e2db80-0c89-0f36-6876-f9639f0d30ab@infradead.org> References: <20190902224310.208575dc@canb.auug.org.au> <20190902174631.GB31445@kroah.com> <13e2db80-0c89-0f36-6876-f9639f0d30ab@infradead.org> User-Agent: Evolution 3.32.1-2 MIME-Version: 1.0 X-BeenThere: driverdev-devel@linuxdriverproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux Driver Project Developer List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "devel@driverdev.osuosl.org" , Stephen Rothwell , Valdis Kletnieks , Linux Kernel Mailing List , Linux Next Mailing List , Linux FS Devel Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: driverdev-devel-bounces@linuxdriverproject.org Sender: "devel" On Mon, 2019-09-02 at 11:07 -0700, Randy Dunlap wrote: > On 9/2/19 10:46 AM, Greg KH wrote: > > On Mon, Sep 02, 2019 at 10:39:39AM -0700, Randy Dunlap wrote: > > > On 9/2/19 5:43 AM, Stephen Rothwell wrote: > > > > Hi all, > > > > > > > > News: I will only be doing 2 more releases before I leave for Kernel > > > > Summit (there may be some reports on Thursday, but I doubt I will have > > > > time to finish the full release) and then no more until Sept 30. > > > > > > > > Changes since 20190830: > > > > > > > > > > Hi, > > > I am seeing lots of exfat build errors when CONFIG_BLOCK is not set/enabled. > > > Maybe its Kconfig should also say > > > depends on BLOCK > > > ? > > > > Here's what I committed to my tree: > > > > > > From e2b880d3d1afaa5cad108c29be3e307b1917d195 Mon Sep 17 00:00:00 2001 > > From: Greg Kroah-Hartman > > Date: Mon, 2 Sep 2019 19:45:06 +0200 > > Subject: staging: exfat: make exfat depend on BLOCK > > > > This should fix a build error in some configurations when CONFIG_BLOCK > > is not selected. Also properly set the dependancy for no FAT support at > > the same time. > > > > Reported-by: Randy Dunlap > > Cc: Valdis Kletnieks > > Signed-off-by: Greg Kroah-Hartman > > That works. Thanks. > Acked-by: Randy Dunlap # build-tested > > > --- > > drivers/staging/exfat/Kconfig | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/drivers/staging/exfat/Kconfig b/drivers/staging/exfat/Kconfig > > index f52129c67f97..290dbfc7ace1 100644 > > --- a/drivers/staging/exfat/Kconfig > > +++ b/drivers/staging/exfat/Kconfig > > @@ -1,11 +1,13 @@ > > config EXFAT_FS > > tristate "exFAT fs support" > > + depends on BLOCK > > select NLS > > help > > This adds support for the exFAT file system. > > > > config EXFAT_DONT_MOUNT_VFAT > > bool "Prohibit mounting of fat/vfat filesysems by exFAT" > > + depends on EXFAT_FS > > default y > > help > > By default, the exFAT driver will only mount exFAT filesystems, and refuse I think this last one is backwards and should be config EXFAT_ALLOW_MOUNT_VFAT and default n > > _______________________________________________ devel mailing list devel@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel