aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/file.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2013-11-28 14:54:27 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-29 20:48:14 -0500
commit024f647117d697165aaadf3f1af1343b7000149a (patch)
tree79dcad5d6babfe359c443093fe7e5bed84322ef7 /fs/sysfs/file.c
parentd19b9846df64d8845be682b6318bd1aee246cf60 (diff)
sysfs, kernfs: introduce kernfs_notify()
Introduce kernfs interface to wake up poll(2) which takes and returns sysfs_dirents. sysfs_notify_dirent() is renamed to kernfs_notify() and sysfs_notify() is updated so that it doesn't directly grab sysfs_mutex but acquires the target sysfs_dirents using sysfs_get_dirent(). sysfs_notify_dirent() is reimplemented as a dumb inline wrapper around kernfs_notify(). This patch doesn't introduce any behavior changes. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs/file.c')
-rw-r--r--fs/sysfs/file.c33
1 files changed, 22 insertions, 11 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c
index 74e3478d9cb4..a68cbef3a674 100644
--- a/fs/sysfs/file.c
+++ b/fs/sysfs/file.c
@@ -851,7 +851,13 @@ static unsigned int kernfs_file_poll(struct file *filp, poll_table *wait)
851 return DEFAULT_POLLMASK|POLLERR|POLLPRI; 851 return DEFAULT_POLLMASK|POLLERR|POLLPRI;
852} 852}
853 853
854void sysfs_notify_dirent(struct sysfs_dirent *sd) 854/**
855 * kernfs_notify - notify a kernfs file
856 * @sd: file to notify
857 *
858 * Notify @sd such that poll(2) on @sd wakes up.
859 */
860void kernfs_notify(struct sysfs_dirent *sd)
855{ 861{
856 struct sysfs_open_dirent *od; 862 struct sysfs_open_dirent *od;
857 unsigned long flags; 863 unsigned long flags;
@@ -868,22 +874,27 @@ void sysfs_notify_dirent(struct sysfs_dirent *sd)
868 874
869 spin_unlock_irqrestore(&sysfs_open_dirent_lock, flags); 875 spin_unlock_irqrestore(&sysfs_open_dirent_lock, flags);
870} 876}
871EXPORT_SYMBOL_GPL(sysfs_notify_dirent); 877EXPORT_SYMBOL_GPL(kernfs_notify);
872 878
873void sysfs_notify(struct kobject *k, const char *dir, const char *attr) 879void sysfs_notify(struct kobject *k, const char *dir, const char *attr)
874{ 880{
875 struct sysfs_dirent *sd = k->sd; 881 struct sysfs_dirent *sd = k->sd, *tmp;
876
877 mutex_lock(&sysfs_mutex);
878 882
879 if (sd && dir) 883 if (sd && dir)
880 sd = sysfs_find_dirent(sd, dir, NULL); 884 sd = sysfs_get_dirent(sd, dir);
881 if (sd && attr) 885 else
882 sd = sysfs_find_dirent(sd, attr, NULL); 886 sysfs_get(sd);
883 if (sd)
884 sysfs_notify_dirent(sd);
885 887
886 mutex_unlock(&sysfs_mutex); 888 if (sd && attr) {
889 tmp = sysfs_get_dirent(sd, attr);
890 sysfs_put(sd);
891 sd = tmp;
892 }
893
894 if (sd) {
895 kernfs_notify(sd);
896 sysfs_put(sd);
897 }
887} 898}
888EXPORT_SYMBOL_GPL(sysfs_notify); 899EXPORT_SYMBOL_GPL(sysfs_notify);
889 900