vserver 1.9.5.x5
[linux-2.6.git] / include / linux / sysfs.h
1 /*
2  * sysfs.h - definitions for the device driver filesystem
3  *
4  * Copyright (c) 2001,2002 Patrick Mochel
5  * Copyright (c) 2004 Silicon Graphics, Inc.
6  *
7  * Please see Documentation/filesystems/sysfs.txt for more information.
8  */
9
10 #ifndef _SYSFS_H_
11 #define _SYSFS_H_
12
13 #include <asm/atomic.h>
14
15 #define SYSFS_SUPER_MAGIC       0x62656572
16
17 struct kobject;
18 struct module;
19
20 struct attribute {
21         char                    * name;
22         struct module           * owner;
23         mode_t                  mode;
24 };
25
26 struct attribute_group {
27         char                    * name;
28         struct attribute        ** attrs;
29 };
30
31
32
33 /**
34  * Use these macros to make defining attributes easier. See include/linux/device.h
35  * for examples..
36  */
37
38 #define __ATTR(_name,_mode,_show,_store) { \
39         .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE },     \
40         .show   = _show,                                        \
41         .store  = _store,                                       \
42 }
43
44 #define __ATTR_RO(_name) { \
45         .attr   = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE },   \
46         .show   = _name##_show, \
47 }
48
49 #define __ATTR_NULL { .attr = { .name = NULL } }
50
51 #define attr_name(_attr) (_attr).attr.name
52
53 struct vm_area_struct;
54
55 struct bin_attribute {
56         struct attribute        attr;
57         size_t                  size;
58         void                    *private;
59         ssize_t (*read)(struct kobject *, char *, loff_t, size_t);
60         ssize_t (*write)(struct kobject *, char *, loff_t, size_t);
61         int (*mmap)(struct kobject *, struct bin_attribute *attr,
62                     struct vm_area_struct *vma);
63 };
64
65 struct sysfs_ops {
66         ssize_t (*show)(struct kobject *, struct attribute *,char *);
67         ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
68 };
69
70 struct sysfs_dirent {
71         atomic_t                s_count;
72         struct list_head        s_sibling;
73         struct list_head        s_children;
74         void                    * s_element;
75         int                     s_type;
76         umode_t                 s_mode;
77         struct dentry           * s_dentry;
78 };
79
80 #define SYSFS_ROOT              0x0001
81 #define SYSFS_DIR               0x0002
82 #define SYSFS_KOBJ_ATTR         0x0004
83 #define SYSFS_KOBJ_BIN_ATTR     0x0008
84 #define SYSFS_KOBJ_LINK         0x0020
85 #define SYSFS_NOT_PINNED        (SYSFS_KOBJ_ATTR | SYSFS_KOBJ_BIN_ATTR | SYSFS_KOBJ_LINK)
86
87 #ifdef CONFIG_SYSFS
88
89 extern int
90 sysfs_create_dir(struct kobject *);
91
92 extern void
93 sysfs_remove_dir(struct kobject *);
94
95 extern int
96 sysfs_rename_dir(struct kobject *, const char *new_name);
97
98 extern int
99 sysfs_create_file(struct kobject *, const struct attribute *);
100
101 extern int
102 sysfs_update_file(struct kobject *, const struct attribute *);
103
104 extern void
105 sysfs_remove_file(struct kobject *, const struct attribute *);
106
107 extern int 
108 sysfs_create_link(struct kobject * kobj, struct kobject * target, char * name);
109
110 extern void
111 sysfs_remove_link(struct kobject *, char * name);
112
113 int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr);
114 int sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr);
115
116 int sysfs_create_group(struct kobject *, const struct attribute_group *);
117 void sysfs_remove_group(struct kobject *, const struct attribute_group *);
118
119 #else /* CONFIG_SYSFS */
120
121 static inline int sysfs_create_dir(struct kobject * k)
122 {
123         return 0;
124 }
125
126 static inline void sysfs_remove_dir(struct kobject * k)
127 {
128         ;
129 }
130
131 static inline int sysfs_rename_dir(struct kobject * k, const char *new_name)
132 {
133         return 0;
134 }
135
136 static inline int sysfs_create_file(struct kobject * k, const struct attribute * a)
137 {
138         return 0;
139 }
140
141 static inline int sysfs_update_file(struct kobject * k, const struct attribute * a)
142 {
143         return 0;
144 }
145
146 static inline void sysfs_remove_file(struct kobject * k, const struct attribute * a)
147 {
148         ;
149 }
150
151 static inline int sysfs_create_link(struct kobject * k, struct kobject * t, char * n)
152 {
153         return 0;
154 }
155
156 static inline void sysfs_remove_link(struct kobject * k, char * name)
157 {
158         ;
159 }
160
161
162 static inline int sysfs_create_bin_file(struct kobject * k, struct bin_attribute * a)
163 {
164         return 0;
165 }
166
167 static inline int sysfs_remove_bin_file(struct kobject * k, struct bin_attribute * a)
168 {
169         return 0;
170 }
171
172 static inline int sysfs_create_group(struct kobject * k, const struct attribute_group *g)
173 {
174         return 0;
175 }
176
177 static inline void sysfs_remove_group(struct kobject * k, const struct attribute_group * g)
178 {
179         ;
180 }
181
182 #endif /* CONFIG_SYSFS */
183
184 #endif /* _SYSFS_H_ */