Re: The argument for fs assistance in handling archives (was: silentsemantic changes with reiser4)

From: Linus Torvalds
Date: Thu Sep 02 2004 - 22:42:25 EST




On Thu, 2 Sep 2004, Alan Cox wrote:
>
> I asked our desktop people. They want something like inotify because
> dontify doesn't cut it.

Well, dnotify() really _is_ inotify(), since it does actually work on
inodes, not dentries.

I think what they are really complaining about is that dnotify() only
notifies the _directory_ when a file is changed, and they'd like it to
notify the file itself too. Which is a one-liner, really.

Does the following make sense? (Totally untested, use-at-your-own-risk,
I've-never-actually-used-dnotify-in-user-space, whatever).

Linus

===== fs/dnotify.c 1.17 vs edited =====
--- 1.17/fs/dnotify.c 2004-08-09 18:45:22 -07:00
+++ edited/fs/dnotify.c 2004-09-02 13:21:26 -07:00
@@ -160,6 +160,8 @@
if (!dir_notify_enable)
return;

+ __inode_dir_notify(dentry->d_inode, event);
+
spin_lock(&dentry->d_lock);
parent = dentry->d_parent;
if (parent->d_inode->i_dnotify_mask & event) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/