]> git.baikalelectronics.ru Git - kernel.git/commit
filesystem notification: create fs/notify to contain all fs notification
authorEric Paris <eparis@redhat.com>
Wed, 17 Dec 2008 18:59:41 +0000 (13:59 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 31 Dec 2008 23:07:43 +0000 (18:07 -0500)
commit1c8806dcad181542297bdb85e0125bc99064d191
tree6a1dcd34c1dd668b465c166c2d6d2596924eff5f
parent1e9edcd66a1f8cd0231f3735b4540e6dd904b172
filesystem notification: create fs/notify to contain all fs notification

Creating a generic filesystem notification interface, fsnotify, which will be
used by inotify, dnotify, and eventually fanotify is really starting to
clutter the fs directory.  This patch simply moves inotify and dnotify into
fs/notify/inotify and fs/notify/dnotify respectively to make both current fs/
and future notification tidier.

Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
14 files changed:
fs/Kconfig
fs/Makefile
fs/dnotify.c [deleted file]
fs/inotify.c [deleted file]
fs/inotify_user.c [deleted file]
fs/notify/Kconfig [new file with mode: 0644]
fs/notify/Makefile [new file with mode: 0644]
fs/notify/dnotify/Kconfig [new file with mode: 0644]
fs/notify/dnotify/Makefile [new file with mode: 0644]
fs/notify/dnotify/dnotify.c [new file with mode: 0644]
fs/notify/inotify/Kconfig [new file with mode: 0644]
fs/notify/inotify/Makefile [new file with mode: 0644]
fs/notify/inotify/inotify.c [new file with mode: 0644]
fs/notify/inotify/inotify_user.c [new file with mode: 0644]