From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al Viro Subject: Re: [PATCH] fs: don't remove inotify watchers from alive inode-s Date: Tue, 9 Sep 2014 02:27:12 +0100 Message-ID: <20140909012712.GV7996@ZenIV.linux.org.uk> References: <1410177716-3965-1-git-send-email-avagin@openvz.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, John McCutchan , Robert Love , Eric Paris , Cyrill Gorcunov , Pavel Emelyanov To: Andrey Vagin Return-path: Content-Disposition: inline In-Reply-To: <1410177716-3965-1-git-send-email-avagin@openvz.org> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Mon, Sep 08, 2014 at 04:01:56PM +0400, Andrey Vagin wrote: > Currently watchers are removed in dentry_iput(), if n_link is zero. > But other detries can be linked with this inode. For example if we > create two hard links, open the first one and set a watcher on the > second one. Then if we remove both links, the watcher will be removed. > But we will have the alive file descriptor, which allows us to generate > more events. > > With this patch, watchers will be removed, only if nlink is zero and > i_dentry list is empty. It changes user-visible ABI. Worse yet, this "ABI" has no specification, so any (misguided) software using that FPOS has nothing to go by other than "whatever existing kernels do". As the result, inotify behaviour is cast in concrete. IOW, NAK.