diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2010-05-14 15:35:21 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-07-28 09:59:02 -0400 |
commit | 0a24887afacefbe2c44e0eee4150b43959a60665 (patch) | |
tree | 3d703177948eb345379b93751d343d798c6e33cf | |
parent | fb1cfb88c8597d847553f39efc2bbd41c72c5f50 (diff) | |
download | kernel_samsung_smdk4412-0a24887afacefbe2c44e0eee4150b43959a60665.zip kernel_samsung_smdk4412-0a24887afacefbe2c44e0eee4150b43959a60665.tar.gz kernel_samsung_smdk4412-0a24887afacefbe2c44e0eee4150b43959a60665.tar.bz2 |
inotify_user.c: make local symbol static
The symbol inotify_max_user_watches is not used outside this
file and should be static.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: John McCutchan <john@johnmccutchan.com>
Cc: Robert Love <rlove@rlove.org>
Cc: Eric Paris <eparis@parisplace.org>
Signed-off-by: Eric Paris <eparis@redhat.com>
-rw-r--r-- | fs/notify/inotify/inotify_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/notify/inotify/inotify_user.c b/fs/notify/inotify/inotify_user.c index 1ce71f5..44aeb0f 100644 --- a/fs/notify/inotify/inotify_user.c +++ b/fs/notify/inotify/inotify_user.c @@ -46,7 +46,7 @@ /* these are configurable via /proc/sys/fs/inotify/ */ static int inotify_max_user_instances __read_mostly; static int inotify_max_queued_events __read_mostly; -int inotify_max_user_watches __read_mostly; +static int inotify_max_user_watches __read_mostly; static struct kmem_cache *inotify_inode_mark_cachep __read_mostly; struct kmem_cache *event_priv_cachep __read_mostly; |