fsnotify: rename fsnotify_{get,put}_sb_connectors()
authorAmir Goldstein <amir73il@gmail.com>
Sun, 17 Mar 2024 18:41:45 +0000 (20:41 +0200)
committerJan Kara <jack@suse.cz>
Thu, 4 Apr 2024 14:21:12 +0000 (16:21 +0200)
commitd2f277e26f521ccf6fb438463b41dba6123caabe
tree6a18eca034c2680e5be6e95eb19ac5a1193159b2
parent4d69c58ef2e419550f02f988ee022fca564f7dd7
fsnotify: rename fsnotify_{get,put}_sb_connectors()

Instead of counting the number of connectors in an sb, we would like
to count the number of watched objects per priority group.

As a start, create an accessor fsnotify_sb_watched_objects() to
s_fsnotify_connectors and rename the fsnotify_{get,put}_sb_connectors()
helpers to fsnotify_{get,put}_sb_watchers() to better describes the
counter.

Increment the counter at the end of fsnotify_attach_connector_to_object()
if connector was attached instead of decrementing it on race to connect.

This is fine, because fsnotify_delete_sb() cannot be running in parallel
to fsnotify_attach_connector_to_object() which requires a reference to
a filesystem object.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20240317184154.1200192-2-amir73il@gmail.com>
fs/notify/fsnotify.c
fs/notify/mark.c
include/linux/fsnotify.h
include/linux/fsnotify_backend.h