forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'for-linus' of git://git.infradead.org/users/eparis/notify
* 'for-linus' of git://git.infradead.org/users/eparis/notify: fsnotify: allow groups to set freeing_mark to null inotify/dnotify: should_send_event shouldn't match on FS_EVENT_ON_CHILD dnotify: do not bother to lock entry->lock when reading mask dnotify: do not use ?true:false when assigning to a bool fsnotify: move events should indicate the event was on a child inotify: reimplement inotify using fsnotify fsnotify: handle filesystem unmounts with fsnotify marks fsnotify: fsnotify marks on inodes pin them in core fsnotify: allow groups to add private data to events fsnotify: add correlations between events fsnotify: include pathnames with entries when possible fsnotify: generic notification queue and waitq dnotify: reimplement dnotify using fsnotify fsnotify: parent event notification fsnotify: add marks to inodes so groups can interpret how to handle those inodes fsnotify: unified filesystem notification backend
- Loading branch information
Showing
23 changed files
with
2,813 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1802,10 +1802,10 @@ F: drivers/char/epca* | |
F: drivers/char/digi* | ||
|
||
DIRECTORY NOTIFICATION (DNOTIFY) | ||
P: Stephen Rothwell | ||
M: [email protected].org.au | ||
P: Eric Paris | ||
M: eparis@parisplace.org | ||
L: [email protected] | ||
S: Supported | ||
S: Maintained | ||
F: Documentation/filesystems/dnotify.txt | ||
F: fs/notify/dnotify/ | ||
F: include/linux/dnotify.h | ||
|
@@ -2858,6 +2858,8 @@ P: John McCutchan | |
M: [email protected] | ||
P: Robert Love | ||
M: [email protected] | ||
P: Eric Paris | ||
M: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/filesystems/inotify.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
config FSNOTIFY | ||
bool "Filesystem notification backend" | ||
default y | ||
---help--- | ||
fsnotify is a backend for filesystem notification. fsnotify does | ||
not provide any userspace interface but does provide the basis | ||
needed for other notification schemes such as dnotify, inotify, | ||
and fanotify. | ||
|
||
Say Y here to enable fsnotify suport. | ||
|
||
If unsure, say Y. | ||
|
||
source "fs/notify/dnotify/Kconfig" | ||
source "fs/notify/inotify/Kconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
obj-$(CONFIG_FSNOTIFY) += fsnotify.o notification.o group.o inode_mark.o | ||
|
||
obj-y += dnotify/ | ||
obj-y += inotify/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.