Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp4656610pxv; Tue, 29 Jun 2021 12:14:59 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyt1ipHUs3JbTU0SHtd2ZyBT2+MNC6cUrxYJNQH2cLo3A6W9Sf08/UZOYct4pYeIoyQgE2J X-Received: by 2002:a05:6402:1c04:: with SMTP id ck4mr41398729edb.301.1624994099098; Tue, 29 Jun 2021 12:14:59 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1624994099; cv=none; d=google.com; s=arc-20160816; b=Pc76IM9dwJ9a8AKddvk+KJASySuNUN76rf8sLKD2vlx9IgHvO5tl8vJhOrqRLt9FNW h9efKGmbXG0JgObIJGkBOjF6ayBl1B6IqK45wsaY4lCKIXKLXO/kbGL+y8TEi2l3D7sK yFsyOl94+CicH9n/SoyhDYYCkecQX/IeNTDUgU2u48lb3KjodY+GMu3xTVx5QidiXVdg RmPQF/boskfyy4T783iZeqnSW8G2H8V7Xn9mxUmBwqiFAJSxt/xx1bmI7lXJ9tkRjujY pVr3EWlZ8coneXj/qiBZrfcI/EF6ojrOiPGtVKYXtmLjbUo1vDUFbJMBWC8bFS0hlLEE PKsg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=u4UNLTh4xhakRJrq5cjAUJA+38ISyS1Y/OhKc5lYP1A=; b=riDZJx3XHhquzn0E3cmhVtkeb4uh9vs17K78tSc56+LHikXoLgkZmLG5Vw5SHe2Hsv s64+BQDB6mW8937MWCc9jaoDw+G1PAJQykKgMrqW8c6r3SICvZs7AqFpOGL0h7KymVIX 6PyYce8bLXQP2h9y83KqEn4x5LV9PRnfvsteAJQSt106xqJtEfQ9dqWEDK1a+7ZOu35q 8JnyT3vwv8gvPBfykR3ykvf85f5XxaV7ZJWdSnvNvJ9FQqeCEE0H6G7CHOTI7PMReh9r 3lqbBwYOKwkS2+P7izFdKtEPr+R18Nx+GCHM0lZI0qriQaaDXXbqlBhlo/ZXYnJ+rNAS VgeA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id h9si9162210ede.288.2021.06.29.12.14.32; Tue, 29 Jun 2021 12:14:59 -0700 (PDT) Received-SPF: pass (google.com: 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: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235295AbhF2TOx (ORCPT + 99 others); Tue, 29 Jun 2021 15:14:53 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:34860 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234228AbhF2TOx (ORCPT ); Tue, 29 Jun 2021 15:14:53 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: krisman) with ESMTPSA id 7E4891F431AF From: Gabriel Krisman Bertazi To: amir73il@gmail.com Cc: djwong@kernel.org, tytso@mit.edu, david@fromorbit.com, jack@suse.com, dhowells@redhat.com, khazhy@google.com, linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, Gabriel Krisman Bertazi , kernel@collabora.com Subject: [PATCH v3 05/15] inotify: Don't force FS_IN_IGNORED Date: Tue, 29 Jun 2021 15:10:25 -0400 Message-Id: <20210629191035.681913-6-krisman@collabora.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20210629191035.681913-1-krisman@collabora.com> References: <20210629191035.681913-1-krisman@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org According to Amir: "FS_IN_IGNORED is completely internal to inotify and there is no need to set it in i_fsnotify_mask at all, so if we remove the bit from the output of inotify_arg_to_mask() no functionality will change and we will be able to overload the event bit for FS_ERROR." This is done in preparation to overload FS_ERROR with the notification mechanism in fanotify. Suggested-by: Amir Goldstein Signed-off-by: Gabriel Krisman Bertazi Reviewed-by: Amir Goldstein --- fs/notify/inotify/inotify_user.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/notify/inotify/inotify_user.c b/fs/notify/inotify/inotify_user.c index 98f61b31745a..4d17be6dd58d 100644 --- a/fs/notify/inotify/inotify_user.c +++ b/fs/notify/inotify/inotify_user.c @@ -89,10 +89,10 @@ static inline __u32 inotify_arg_to_mask(struct inode *inode, u32 arg) __u32 mask; /* - * Everything should accept their own ignored and should receive events - * when the inode is unmounted. All directories care about children. + * Everything should receive events when the inode is unmounted. + * All directories care about children. */ - mask = (FS_IN_IGNORED | FS_UNMOUNT); + mask = (FS_UNMOUNT); if (S_ISDIR(inode->i_mode)) mask |= FS_EVENT_ON_CHILD; -- 2.32.0