sysfs.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * fs/sysfs/sysfs.h - sysfs internal header file
  3. *
  4. * Copyright (c) 2001-3 Patrick Mochel
  5. * Copyright (c) 2007 SUSE Linux Products GmbH
  6. * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
  7. *
  8. * This file is released under the GPLv2.
  9. */
  10. #ifndef __SYSFS_INTERNAL_H
  11. #define __SYSFS_INTERNAL_H
  12. #include "../kernfs/kernfs-internal.h"
  13. #include <linux/sysfs.h>
  14. /*
  15. * mount.c
  16. */
  17. /*
  18. * Each sb is associated with one namespace tag, currently the network
  19. * namespace of the task which mounted this sysfs instance. If multiple
  20. * tags become necessary, make the following an array and compare
  21. * sysfs_dirent tag against every entry.
  22. */
  23. struct sysfs_super_info {
  24. void *ns;
  25. };
  26. #define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info))
  27. extern struct sysfs_dirent sysfs_root;
  28. extern struct kmem_cache *sysfs_dir_cachep;
  29. /*
  30. * dir.c
  31. */
  32. extern spinlock_t sysfs_symlink_target_lock;
  33. void sysfs_warn_dup(struct sysfs_dirent *parent, const char *name);
  34. /*
  35. * file.c
  36. */
  37. int sysfs_add_file(struct sysfs_dirent *dir_sd,
  38. const struct attribute *attr, bool is_bin);
  39. int sysfs_add_file_mode_ns(struct sysfs_dirent *dir_sd,
  40. const struct attribute *attr, bool is_bin,
  41. umode_t amode, const void *ns);
  42. /*
  43. * symlink.c
  44. */
  45. extern const struct inode_operations sysfs_symlink_inode_operations;
  46. int sysfs_create_link_sd(struct sysfs_dirent *sd, struct kobject *target,
  47. const char *name);
  48. #endif /* __SYSFS_INTERNAL_H */