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=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 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 C0B81C3815B for ; Wed, 15 Apr 2020 20:34:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9BADF206E9 for ; Wed, 15 Apr 2020 20:34:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S371296AbgDOUei (ORCPT ); Wed, 15 Apr 2020 16:34:38 -0400 Received: from mga12.intel.com ([192.55.52.136]:1286 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S371264AbgDOUee (ORCPT ); Wed, 15 Apr 2020 16:34:34 -0400 IronPort-SDR: 2LyDLe2EYQold9G9rW+6J/c0YZHYE+r3kbkexYNd/oXQoDUDEDLspwKae6l4T6IKBr1VbW/tGd d0JoVANzj/lg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Apr 2020 13:34:33 -0700 IronPort-SDR: qMIL+PP6t6fk+wubpecDb/RRcv1HkzBy5DZA+Ijw1V370MueFdQ+a7zyHFN7vAwnwmaeEKCaNq yqKS9aAUU4Cw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,388,1580803200"; d="scan'208";a="455027705" Received: from iweiny-desk2.sc.intel.com ([10.3.52.147]) by fmsmga006.fm.intel.com with ESMTP; 15 Apr 2020 13:34:33 -0700 Date: Wed, 15 Apr 2020 13:34:33 -0700 From: Ira Weiny To: Jan Kara Cc: linux-kernel@vger.kernel.org, "Darrick J. Wong" , Dan Williams , Dave Chinner , Christoph Hellwig , "Theodore Y. Ts'o" , Jeff Moyer , linux-ext4@vger.kernel.org, linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH RFC 2/8] fs/ext4: Disallow verity if inode is DAX Message-ID: <20200415203433.GB2309605@iweiny-DESK2.sc.intel.com> References: <20200414040030.1802884-1-ira.weiny@intel.com> <20200414040030.1802884-3-ira.weiny@intel.com> <20200415120002.GE6126@quack2.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200415120002.GE6126@quack2.suse.cz> User-Agent: Mutt/1.11.1 (2018-12-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 15, 2020 at 02:00:02PM +0200, Jan Kara wrote: > On Mon 13-04-20 21:00:24, ira.weiny@intel.com wrote: > > From: Ira Weiny > > > > Verity and DAX are incompatible. Changing the DAX mode due to a verity > > flag change is wrong without a corresponding address_space_operations > > update. > > > > Make the 2 options mutually exclusive by returning an error if DAX was > > set first. > > > > (Setting DAX is already disabled if Verity is set first.) > > > > Signed-off-by: Ira Weiny > > --- > > fs/ext4/verity.c | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/fs/ext4/verity.c b/fs/ext4/verity.c > > index dc5ec724d889..ce3f9a198d3b 100644 > > --- a/fs/ext4/verity.c > > +++ b/fs/ext4/verity.c > > @@ -113,6 +113,9 @@ static int ext4_begin_enable_verity(struct file *filp) > > handle_t *handle; > > int err; > > > > + if (WARN_ON_ONCE(IS_DAX(inode))) > > + return -EINVAL; > > + > > Hum, one question, is there a reason for WARN_ON_ONCE()? If I understand > correctly, user could normally trigger this, couldn't he? Removed and added to the verity doc. Ira > > Honza > > > if (ext4_verity_in_progress(inode)) > > return -EBUSY; > > > > -- > > 2.25.1 > > > -- > Jan Kara > SUSE Labs, CR