From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966934AbcLVVTd (ORCPT ); Thu, 22 Dec 2016 16:19:33 -0500 Received: from mga03.intel.com ([134.134.136.65]:46205 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932213AbcLVVTW (ORCPT ); Thu, 22 Dec 2016 16:19:22 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,390,1477983600"; d="scan'208";a="1075369262" From: Ross Zwisler To: linux-kernel@vger.kernel.org Cc: Dan Williams , Alexander Viro , Andrew Morton , Arnd Bergmann , Christoph Hellwig , Dave Chinner , Dave Hansen , Jan Kara , Matthew Wilcox , linux-arch@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, linux-nvdimm@ml01.01.org, Ross Zwisler Subject: [PATCH v2 1/4] dax: kill uml support Date: Thu, 22 Dec 2016 14:18:53 -0700 Message-Id: <1482441536-14550-2-git-send-email-ross.zwisler@linux.intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1482441536-14550-1-git-send-email-ross.zwisler@linux.intel.com> References: <1482441536-14550-1-git-send-email-ross.zwisler@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Dan Williams The lack of common transparent-huge-page helpers for UML is becoming increasingly painful for fs/dax.c now that it is growing more pmd functionality. Add UML to the list of unsupported architectures. Cc: Jan Kara Cc: Christoph Hellwig Cc: Dave Chinner Cc: Dave Hansen Cc: Matthew Wilcox Cc: Alexander Viro Cc: Ross Zwisler Signed-off-by: Dan Williams [rez: squashed #ifdef removal into another patch in the series ] Signed-off-by: Ross Zwisler --- fs/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/Kconfig b/fs/Kconfig index c2a377c..661931f 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -37,7 +37,7 @@ source "fs/f2fs/Kconfig" config FS_DAX bool "Direct Access (DAX) support" depends on MMU - depends on !(ARM || MIPS || SPARC) + depends on !(ARM || MIPS || SPARC || UML) help Direct Access (DAX) can be used on memory-backed block devices. If the block device supports DAX and the filesystem supports DAX, -- 2.7.4