Received: by 2002:a25:1985:0:0:0:0:0 with SMTP id 127csp11969ybz; Wed, 15 Apr 2020 03:27:56 -0700 (PDT) X-Google-Smtp-Source: APiQypLlDgS7JK1OmLOW1bPX/uE6mcMo7Kw6YwUN3HLOXxzAURUOTrEfUiylZOV7ermkcWUwEg1c X-Received: by 2002:aa7:d5d5:: with SMTP id d21mr9798951eds.160.1586946475818; Wed, 15 Apr 2020 03:27:55 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1586946475; cv=none; d=google.com; s=arc-20160816; b=TKbeSMe7CckyplCRs54fcnvjSYWXENkT0mhli8Q6OVdIXPBU0hsudZn//cJ5bOQOrL 11itXpdUiM4Of7jZk97/LPr/+iYsax8kGJ5h6c6bxgW2G9lS/1M3pCXa7OgJFlIJUzoR Fkdn8AfBG2jwcGSX5kr/kmdLgPoA6G5HNATK1uAKIF8qhRubWZ7heND2JTaVGqI8tdMX d22EsRwo3yE4VFEwi6HEr6e+nGDSt9leeeM2VvNAHAkkcml914moUtRbeF4C7HqnnRyr j+44uc5WTcMNkLzTAFBimVcIWs7hJh7kl/f15g6LWOHpCzfBwOhBh2j8N3Pa5SxkOzpL Rz0w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=Pl4RbR+8I5FJlNzoWj1U6hkfZhZOnU4etS1FtQXshFc=; b=NH1I2iTP7bZQq/tUbuenyH7kG+PrH0V91QzkjMhvHSu537yRhz7bcTH1RdLQ32eCfF 4LqDUqEOQ6npjXAEO6kUB7NV/nxexpNfyTUYWwrCkvKiHpzjh0TWsqb5WrpLlFXjIUUk 0N5kK5H/zL47O8pQtktNuhyFWg3sC8fCR+2T/klmaY2hrR7uJrfa6vVrfTKvSh8ZmoH+ SlL9waOUaBrGqMcwMnSO4QI+/PfPIiUo6ShJhbR7ZPTkKAEVKFiKsuWRygo7iSnqAV/u i50Pfwoyv0iqINLIZIXdBDj4hxCFfi5dNDmIvw5RTdS8F9D60uoyPhUudF/qUTZjstZk TIGQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id by30si6740661edb.513.2020.04.15.03.27.25; Wed, 15 Apr 2020 03:27:55 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2405956AbgDNGZe (ORCPT + 99 others); Tue, 14 Apr 2020 02:25:34 -0400 Received: from verein.lst.de ([213.95.11.211]:37625 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2405926AbgDNGZc (ORCPT ); Tue, 14 Apr 2020 02:25:32 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id B6489227A81; Tue, 14 Apr 2020 08:25:30 +0200 (CEST) Date: Tue, 14 Apr 2020 08:25:30 +0200 From: Christoph Hellwig To: ira.weiny@intel.com Cc: linux-kernel@vger.kernel.org, "Darrick J. Wong" , Dan Williams , Dave Chinner , Christoph Hellwig , "Theodore Y. Ts'o" , Jan Kara , Jeff Moyer , linux-ext4@vger.kernel.org, linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH V7 4/9] fs/xfs: Make DAX mount option a tri-state Message-ID: <20200414062530.GD23154@lst.de> References: <20200413054046.1560106-1-ira.weiny@intel.com> <20200413054046.1560106-5-ira.weiny@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200413054046.1560106-5-ira.weiny@intel.com> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Sun, Apr 12, 2020 at 10:40:41PM -0700, ira.weiny@intel.com wrote: > +#define XFS_MOUNT_DAX (1ULL << 62) > +#define XFS_MOUNT_NODAX (1ULL << 63) Replace this with XFS_MOUNT_DAX_ALWAYS and XFS_MOUNT_DAX_NEVER?