diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2019-10-15 16:25:18 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2019-10-17 11:31:12 +0300 |
commit | 4a0b20be60bf387a1e4f989ff9953c0d1e0858aa (patch) | |
tree | e56288866e3e4bcef0aaf2c73a3b7cc29c540759 /fs/notify/fsnotify.c | |
parent | cc3a7bfe62b947b423fcb2cfe89fcba92bf48fa3 (diff) | |
download | linux-4a0b20be60bf387a1e4f989ff9953c0d1e0858aa.tar.xz |
fsnotify: move declaration of fsnotify_mark_connector_cachep to fsnotify.h
Move fsnotify_mark_connector_cachep to fsnotify.h to properly
share it with the user in mark.c and avoid the following warning
from sparse:
fs/notify/mark.c:82:19: warning: symbol 'fsnotify_mark_connector_cachep' was not declared. Should it be static?
Link: https://lore.kernel.org/r/20191015132518.21819-1-ben.dooks@codethink.co.uk
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/notify/fsnotify.c')
-rw-r--r-- | fs/notify/fsnotify.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 2ecef6155fc0..3e77b728a22b 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c @@ -381,8 +381,6 @@ out: } EXPORT_SYMBOL_GPL(fsnotify); -extern struct kmem_cache *fsnotify_mark_connector_cachep; - static __init int fsnotify_init(void) { int ret; |