mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
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>
This commit is contained in:
parent
d19b9846df
commit
024f647117
3 changed files with 30 additions and 15 deletions
|
@ -84,6 +84,7 @@ int kernfs_rename_ns(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent,
|
|||
const char *new_name, const void *new_ns);
|
||||
void kernfs_enable_ns(struct sysfs_dirent *sd);
|
||||
int kernfs_setattr(struct sysfs_dirent *sd, const struct iattr *iattr);
|
||||
void kernfs_notify(struct sysfs_dirent *sd);
|
||||
|
||||
#else /* CONFIG_SYSFS */
|
||||
|
||||
|
@ -120,6 +121,8 @@ static inline int kernfs_setattr(struct sysfs_dirent *sd,
|
|||
const struct iattr *iattr)
|
||||
{ return -ENOSYS; }
|
||||
|
||||
static inline void kernfs_notify(struct sysfs_dirent *sd) { }
|
||||
|
||||
#endif /* CONFIG_SYSFS */
|
||||
|
||||
static inline struct sysfs_dirent *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue