blob: cc4794914b52273edeaa0f29f0ca559d8f279559 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/libfs.c
3 * Library for filesystems writers.
4 */
5
6#include <linux/module.h>
7#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mount.h>
10#include <linux/vfs.h>
npiggin@suse.de7bb46a62010-05-27 01:05:33 +100011#include <linux/quotaops.h>
Ingo Molnar7cf34c72006-03-23 03:00:36 -080012#include <linux/mutex.h>
Christoph Hellwig25961102007-10-21 16:42:05 -070013#include <linux/exportfs.h>
Al Virod5aacad2009-06-07 14:56:44 -040014#include <linux/writeback.h>
15#include <linux/buffer_head.h>
Ingo Molnar7cf34c72006-03-23 03:00:36 -080016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/uaccess.h>
18
Nick Pigginda502952011-01-07 17:49:33 +110019static inline int simple_positive(struct dentry *dentry)
20{
21 return dentry->d_inode && !d_unhashed(dentry);
22}
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024int simple_getattr(struct vfsmount *mnt, struct dentry *dentry,
25 struct kstat *stat)
26{
27 struct inode *inode = dentry->d_inode;
28 generic_fillattr(inode, stat);
29 stat->blocks = inode->i_mapping->nrpages << (PAGE_CACHE_SHIFT - 9);
30 return 0;
31}
32
David Howells726c3342006-06-23 02:02:58 -070033int simple_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
David Howells726c3342006-06-23 02:02:58 -070035 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 buf->f_bsize = PAGE_CACHE_SIZE;
37 buf->f_namelen = NAME_MAX;
38 return 0;
39}
40
41/*
42 * Retaining negative dentries for an in-memory filesystem just wastes
43 * memory and lookup time: arrange for them to be deleted immediately.
44 */
Nick Pigginfe15ce42011-01-07 17:49:23 +110045static int simple_delete_dentry(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 return 1;
48}
49
50/*
51 * Lookup the data. This is trivial - if the dentry didn't already
52 * exist, we know it is negative. Set d_op to delete negative dentries.
53 */
54struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
55{
Al Viro3ba13d12009-02-20 06:02:22 +000056 static const struct dentry_operations simple_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .d_delete = simple_delete_dentry,
58 };
59
60 if (dentry->d_name.len > NAME_MAX)
61 return ERR_PTR(-ENAMETOOLONG);
62 dentry->d_op = &simple_dentry_operations;
63 d_add(dentry, NULL);
64 return NULL;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067int dcache_dir_open(struct inode *inode, struct file *file)
68{
69 static struct qstr cursor_name = {.len = 1, .name = "."};
70
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -080071 file->private_data = d_alloc(file->f_path.dentry, &cursor_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 return file->private_data ? 0 : -ENOMEM;
74}
75
76int dcache_dir_close(struct inode *inode, struct file *file)
77{
78 dput(file->private_data);
79 return 0;
80}
81
82loff_t dcache_dir_lseek(struct file *file, loff_t offset, int origin)
83{
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110084 struct dentry *dentry = file->f_path.dentry;
85 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 switch (origin) {
87 case 1:
88 offset += file->f_pos;
89 case 0:
90 if (offset >= 0)
91 break;
92 default:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110093 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return -EINVAL;
95 }
96 if (offset != file->f_pos) {
97 file->f_pos = offset;
98 if (file->f_pos >= 2) {
99 struct list_head *p;
100 struct dentry *cursor = file->private_data;
101 loff_t n = file->f_pos - 2;
102
103 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100104 spin_lock(&dentry->d_lock);
105 /* d_lock not required for cursor */
Eric Dumazet5160ee62006-01-08 01:03:32 -0800106 list_del(&cursor->d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100107 p = dentry->d_subdirs.next;
108 while (n && p != &dentry->d_subdirs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 struct dentry *next;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800110 next = list_entry(p, struct dentry, d_u.d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100111 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
Nick Pigginda502952011-01-07 17:49:33 +1100112 if (simple_positive(next))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 n--;
Nick Pigginda502952011-01-07 17:49:33 +1100114 spin_unlock(&next->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 p = p->next;
116 }
Eric Dumazet5160ee62006-01-08 01:03:32 -0800117 list_add_tail(&cursor->d_u.d_child, p);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100118 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 spin_unlock(&dcache_lock);
120 }
121 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100122 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return offset;
124}
125
126/* Relationship between i_mode and the DT_xxx types */
127static inline unsigned char dt_type(struct inode *inode)
128{
129 return (inode->i_mode >> 12) & 15;
130}
131
132/*
133 * Directory is locked and all positive dentries in it are safe, since
134 * for ramfs-type trees they can't go away without unlink() or rmdir(),
135 * both impossible due to the lock on directory.
136 */
137
138int dcache_readdir(struct file * filp, void * dirent, filldir_t filldir)
139{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800140 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct dentry *cursor = filp->private_data;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800142 struct list_head *p, *q = &cursor->d_u.d_child;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 ino_t ino;
144 int i = filp->f_pos;
145
146 switch (i) {
147 case 0:
148 ino = dentry->d_inode->i_ino;
149 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
150 break;
151 filp->f_pos++;
152 i++;
153 /* fallthrough */
154 case 1:
155 ino = parent_ino(dentry);
156 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
157 break;
158 filp->f_pos++;
159 i++;
160 /* fallthrough */
161 default:
162 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100163 spin_lock(&dentry->d_lock);
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700164 if (filp->f_pos == 2)
165 list_move(q, &dentry->d_subdirs);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 for (p=q->next; p != &dentry->d_subdirs; p=p->next) {
168 struct dentry *next;
Eric Dumazet5160ee62006-01-08 01:03:32 -0800169 next = list_entry(p, struct dentry, d_u.d_child);
Nick Pigginda502952011-01-07 17:49:33 +1100170 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
171 if (!simple_positive(next)) {
172 spin_unlock(&next->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 continue;
Nick Pigginda502952011-01-07 17:49:33 +1100174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Nick Pigginda502952011-01-07 17:49:33 +1100176 spin_unlock(&next->d_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100177 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 spin_unlock(&dcache_lock);
Ronni Nielsen0f8952c22007-05-09 06:44:57 +0200179 if (filldir(dirent, next->d_name.name,
180 next->d_name.len, filp->f_pos,
181 next->d_inode->i_ino,
182 dt_type(next->d_inode)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100185 spin_lock(&dentry->d_lock);
186 spin_lock_nested(&next->d_lock, DENTRY_D_LOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* next is still alive */
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700188 list_move(q, p);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100189 spin_unlock(&next->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 p = q;
191 filp->f_pos++;
192 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100193 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 spin_unlock(&dcache_lock);
195 }
196 return 0;
197}
198
199ssize_t generic_read_dir(struct file *filp, char __user *buf, size_t siz, loff_t *ppos)
200{
201 return -EISDIR;
202}
203
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800204const struct file_operations simple_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 .open = dcache_dir_open,
206 .release = dcache_dir_close,
207 .llseek = dcache_dir_lseek,
208 .read = generic_read_dir,
209 .readdir = dcache_readdir,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200210 .fsync = noop_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800213const struct inode_operations simple_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 .lookup = simple_lookup,
215};
216
Hugh Dickins759b9772007-03-05 00:30:28 -0800217static const struct super_operations simple_super_operations = {
218 .statfs = simple_statfs,
219};
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/*
222 * Common helper for pseudo-filesystems (sockfs, pipefs, bdev - stuff that
223 * will never be mountable)
224 */
Al Viro51139ad2010-07-25 23:47:46 +0400225struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name,
226 const struct super_operations *ops, unsigned long magic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct dentry *dentry;
230 struct inode *root;
231 struct qstr d_name = {.name = name, .len = strlen(name)};
232
233 if (IS_ERR(s))
Al Viro51139ad2010-07-25 23:47:46 +0400234 return ERR_CAST(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 s->s_flags = MS_NOUSER;
Jeff Layton89a4eb42009-08-18 14:11:08 -0700237 s->s_maxbytes = MAX_LFS_FILESIZE;
Alex Nixon3971e1a2008-07-29 22:33:03 -0700238 s->s_blocksize = PAGE_SIZE;
239 s->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800241 s->s_op = ops ? ops : &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 s->s_time_gran = 1;
243 root = new_inode(s);
244 if (!root)
245 goto Enomem;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700246 /*
247 * since this is the first inode, make it number 1. New inodes created
248 * after this must take care not to collide with it (by passing
249 * max_reserved of 1 to iunique).
250 */
251 root->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 root->i_mode = S_IFDIR | S_IRUSR | S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 root->i_atime = root->i_mtime = root->i_ctime = CURRENT_TIME;
254 dentry = d_alloc(NULL, &d_name);
255 if (!dentry) {
256 iput(root);
257 goto Enomem;
258 }
259 dentry->d_sb = s;
260 dentry->d_parent = dentry;
261 d_instantiate(dentry, root);
262 s->s_root = dentry;
263 s->s_flags |= MS_ACTIVE;
Al Viro51139ad2010-07-25 23:47:46 +0400264 return dget(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266Enomem:
Al Viro6f5bbff2009-05-06 01:34:22 -0400267 deactivate_locked_super(s);
Al Viro51139ad2010-07-25 23:47:46 +0400268 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271int simple_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
272{
273 struct inode *inode = old_dentry->d_inode;
274
275 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansend8c76e62006-09-30 23:29:04 -0700276 inc_nlink(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400277 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 dget(dentry);
279 d_instantiate(dentry, inode);
280 return 0;
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283int simple_empty(struct dentry *dentry)
284{
285 struct dentry *child;
286 int ret = 0;
287
288 spin_lock(&dcache_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100289 spin_lock(&dentry->d_lock);
Nick Pigginda502952011-01-07 17:49:33 +1100290 list_for_each_entry(child, &dentry->d_subdirs, d_u.d_child) {
291 spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED);
292 if (simple_positive(child)) {
293 spin_unlock(&child->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto out;
Nick Pigginda502952011-01-07 17:49:33 +1100295 }
296 spin_unlock(&child->d_lock);
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ret = 1;
299out:
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100300 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 spin_unlock(&dcache_lock);
302 return ret;
303}
304
305int simple_unlink(struct inode *dir, struct dentry *dentry)
306{
307 struct inode *inode = dentry->d_inode;
308
309 inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700310 drop_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 dput(dentry);
312 return 0;
313}
314
315int simple_rmdir(struct inode *dir, struct dentry *dentry)
316{
317 if (!simple_empty(dentry))
318 return -ENOTEMPTY;
319
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700320 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 simple_unlink(dir, dentry);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700322 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324}
325
326int simple_rename(struct inode *old_dir, struct dentry *old_dentry,
327 struct inode *new_dir, struct dentry *new_dentry)
328{
329 struct inode *inode = old_dentry->d_inode;
330 int they_are_dirs = S_ISDIR(old_dentry->d_inode->i_mode);
331
332 if (!simple_empty(new_dentry))
333 return -ENOTEMPTY;
334
335 if (new_dentry->d_inode) {
336 simple_unlink(new_dir, new_dentry);
337 if (they_are_dirs)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700338 drop_nlink(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 } else if (they_are_dirs) {
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700340 drop_nlink(old_dir);
Dave Hansend8c76e62006-09-30 23:29:04 -0700341 inc_nlink(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 old_dir->i_ctime = old_dir->i_mtime = new_dir->i_ctime =
345 new_dir->i_mtime = inode->i_ctime = CURRENT_TIME;
346
347 return 0;
348}
349
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000350/**
Christoph Hellwigeef23802010-06-04 11:30:01 +0200351 * simple_setattr - setattr for simple filesystem
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000352 * @dentry: dentry
353 * @iattr: iattr structure
354 *
355 * Returns 0 on success, -error on failure.
356 *
Christoph Hellwigeef23802010-06-04 11:30:01 +0200357 * simple_setattr is a simple ->setattr implementation without a proper
358 * implementation of size changes.
359 *
360 * It can either be used for in-memory filesystems or special files
361 * on simple regular filesystems. Anything that needs to change on-disk
362 * or wire state on size changes needs its own setattr method.
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000363 */
364int simple_setattr(struct dentry *dentry, struct iattr *iattr)
365{
366 struct inode *inode = dentry->d_inode;
367 int error;
368
Christoph Hellwigeef23802010-06-04 11:30:01 +0200369 WARN_ON_ONCE(inode->i_op->truncate);
370
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000371 error = inode_change_ok(inode, iattr);
372 if (error)
373 return error;
374
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200375 if (iattr->ia_valid & ATTR_SIZE)
376 truncate_setsize(inode, iattr->ia_size);
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200377 setattr_copy(inode, iattr);
Christoph Hellwigeef23802010-06-04 11:30:01 +0200378 mark_inode_dirty(inode);
379 return 0;
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000380}
381EXPORT_SYMBOL(simple_setattr);
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383int simple_readpage(struct file *file, struct page *page)
384{
Pekka J Enbergc0d92cb2006-09-29 01:59:09 -0700385 clear_highpage(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 flush_dcache_page(page);
387 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unlock_page(page);
389 return 0;
390}
391
Nick Pigginafddba42007-10-16 01:25:01 -0700392int simple_write_begin(struct file *file, struct address_space *mapping,
393 loff_t pos, unsigned len, unsigned flags,
394 struct page **pagep, void **fsdata)
395{
396 struct page *page;
397 pgoff_t index;
Nick Pigginafddba42007-10-16 01:25:01 -0700398
399 index = pos >> PAGE_CACHE_SHIFT;
Nick Pigginafddba42007-10-16 01:25:01 -0700400
Nick Piggin54566b22009-01-04 12:00:53 -0800401 page = grab_cache_page_write_begin(mapping, index, flags);
Nick Pigginafddba42007-10-16 01:25:01 -0700402 if (!page)
403 return -ENOMEM;
404
405 *pagep = page;
406
Boaz Harrosh193cf4b2010-01-12 16:18:08 +0200407 if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
408 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
409
410 zero_user_segments(page, 0, from, from + len, PAGE_CACHE_SIZE);
411 }
412 return 0;
Nick Pigginafddba42007-10-16 01:25:01 -0700413}
414
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200415/**
416 * simple_write_end - .write_end helper for non-block-device FSes
417 * @available: See .write_end of address_space_operations
418 * @file: "
419 * @mapping: "
420 * @pos: "
421 * @len: "
422 * @copied: "
423 * @page: "
424 * @fsdata: "
425 *
426 * simple_write_end does the minimum needed for updating a page after writing is
427 * done. It has the same API signature as the .write_end of
428 * address_space_operations vector. So it can just be set onto .write_end for
429 * FSes that don't need any other processing. i_mutex is assumed to be held.
430 * Block based filesystems should use generic_write_end().
431 * NOTE: Even though i_size might get updated by this function, mark_inode_dirty
432 * is not called, so a filesystem that actually does store data in .write_inode
433 * should extend on what's done here with a call to mark_inode_dirty() in the
434 * case that i_size has changed.
435 */
436int simple_write_end(struct file *file, struct address_space *mapping,
437 loff_t pos, unsigned len, unsigned copied,
438 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct inode *inode = page->mapping->host;
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200441 loff_t last_pos = pos + copied;
442
443 /* zero the stale part of the page if we did a short copy */
444 if (copied < len) {
445 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
446
447 zero_user(page, from + copied, len - copied);
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Nick Piggin955eff52007-02-20 13:58:08 -0800450 if (!PageUptodate(page))
451 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /*
453 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800454 * cannot change under us because we hold the i_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
Boaz Harroshad2a722f2010-01-12 15:13:47 +0200456 if (last_pos > inode->i_size)
457 i_size_write(inode, last_pos);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 set_page_dirty(page);
Nick Pigginafddba42007-10-16 01:25:01 -0700460 unlock_page(page);
461 page_cache_release(page);
462
463 return copied;
464}
465
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700466/*
467 * the inodes created here are not hashed. If you use iunique to generate
468 * unique inode values later for this filesystem, then you must take care
469 * to pass it an appropriate max_reserved value to avoid collisions.
470 */
Roberto Sassu7d683a02010-06-03 11:58:28 +0200471int simple_fill_super(struct super_block *s, unsigned long magic,
472 struct tree_descr *files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct inode *inode;
475 struct dentry *root;
476 struct dentry *dentry;
477 int i;
478
479 s->s_blocksize = PAGE_CACHE_SIZE;
480 s->s_blocksize_bits = PAGE_CACHE_SHIFT;
481 s->s_magic = magic;
Hugh Dickins759b9772007-03-05 00:30:28 -0800482 s->s_op = &simple_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 s->s_time_gran = 1;
484
485 inode = new_inode(s);
486 if (!inode)
487 return -ENOMEM;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700488 /*
489 * because the root inode is 1, the files array must not contain an
490 * entry at index 1
491 */
492 inode->i_ino = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 inode->i_mode = S_IFDIR | 0755;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
495 inode->i_op = &simple_dir_inode_operations;
496 inode->i_fop = &simple_dir_operations;
Vincent Hanquez7656f322006-02-03 03:04:48 -0800497 inode->i_nlink = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 root = d_alloc_root(inode);
499 if (!root) {
500 iput(inode);
501 return -ENOMEM;
502 }
503 for (i = 0; !files->name || files->name[0]; i++, files++) {
504 if (!files->name)
505 continue;
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700506
507 /* warn if it tries to conflict with the root inode */
508 if (unlikely(i == 1))
509 printk(KERN_WARNING "%s: %s passed in a files array"
510 "with an index of 1!\n", __func__,
511 s->s_type->name);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 dentry = d_alloc_name(root, files->name);
514 if (!dentry)
515 goto out;
516 inode = new_inode(s);
517 if (!inode)
518 goto out;
519 inode->i_mode = S_IFREG | files->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
521 inode->i_fop = files->ops;
522 inode->i_ino = i;
523 d_add(dentry, inode);
524 }
525 s->s_root = root;
526 return 0;
527out:
528 d_genocide(root);
529 dput(root);
530 return -ENOMEM;
531}
532
533static DEFINE_SPINLOCK(pin_fs_lock);
534
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400535int simple_pin_fs(struct file_system_type *type, struct vfsmount **mount, int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct vfsmount *mnt = NULL;
538 spin_lock(&pin_fs_lock);
539 if (unlikely(!*mount)) {
540 spin_unlock(&pin_fs_lock);
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400541 mnt = vfs_kern_mount(type, 0, type->name, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (IS_ERR(mnt))
543 return PTR_ERR(mnt);
544 spin_lock(&pin_fs_lock);
545 if (!*mount)
546 *mount = mnt;
547 }
548 mntget(*mount);
549 ++*count;
550 spin_unlock(&pin_fs_lock);
551 mntput(mnt);
552 return 0;
553}
554
555void simple_release_fs(struct vfsmount **mount, int *count)
556{
557 struct vfsmount *mnt;
558 spin_lock(&pin_fs_lock);
559 mnt = *mount;
560 if (!--*count)
561 *mount = NULL;
562 spin_unlock(&pin_fs_lock);
563 mntput(mnt);
564}
565
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700566/**
567 * simple_read_from_buffer - copy data from the buffer to user space
568 * @to: the user space buffer to read to
569 * @count: the maximum number of bytes to read
570 * @ppos: the current position in the buffer
571 * @from: the buffer to read from
572 * @available: the size of the buffer
573 *
574 * The simple_read_from_buffer() function reads up to @count bytes from the
575 * buffer @from at offset @ppos into the user space address starting at @to.
576 *
577 * On success, the number of bytes read is returned and the offset @ppos is
578 * advanced by this number, or negative value is returned on error.
579 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580ssize_t simple_read_from_buffer(void __user *to, size_t count, loff_t *ppos,
581 const void *from, size_t available)
582{
583 loff_t pos = *ppos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700584 size_t ret;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (pos < 0)
587 return -EINVAL;
Steven Rostedt14be2742009-09-18 13:05:42 -0700588 if (pos >= available || !count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590 if (count > available - pos)
591 count = available - pos;
Steven Rostedt14be2742009-09-18 13:05:42 -0700592 ret = copy_to_user(to, from + pos, count);
593 if (ret == count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return -EFAULT;
Steven Rostedt14be2742009-09-18 13:05:42 -0700595 count -= ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *ppos = pos + count;
597 return count;
598}
599
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700600/**
Jiri Slaby6a727b42010-05-01 23:51:22 +0200601 * simple_write_to_buffer - copy data from user space to the buffer
602 * @to: the buffer to write to
603 * @available: the size of the buffer
604 * @ppos: the current position in the buffer
605 * @from: the user space buffer to read from
606 * @count: the maximum number of bytes to read
607 *
608 * The simple_write_to_buffer() function reads up to @count bytes from the user
609 * space address starting at @from into the buffer @to at offset @ppos.
610 *
611 * On success, the number of bytes written is returned and the offset @ppos is
612 * advanced by this number, or negative value is returned on error.
613 **/
614ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos,
615 const void __user *from, size_t count)
616{
617 loff_t pos = *ppos;
618 size_t res;
619
620 if (pos < 0)
621 return -EINVAL;
622 if (pos >= available || !count)
623 return 0;
624 if (count > available - pos)
625 count = available - pos;
626 res = copy_from_user(to + pos, from, count);
627 if (res == count)
628 return -EFAULT;
629 count -= res;
630 *ppos = pos + count;
631 return count;
632}
633
634/**
Akinobu Mita6d1029b2008-07-04 09:59:51 -0700635 * memory_read_from_buffer - copy data from the buffer
636 * @to: the kernel space buffer to read to
637 * @count: the maximum number of bytes to read
638 * @ppos: the current position in the buffer
639 * @from: the buffer to read from
640 * @available: the size of the buffer
641 *
642 * The memory_read_from_buffer() function reads up to @count bytes from the
643 * buffer @from at offset @ppos into the kernel space address starting at @to.
644 *
645 * On success, the number of bytes read is returned and the offset @ppos is
646 * advanced by this number, or negative value is returned on error.
647 **/
Akinobu Mita93b07112008-06-05 22:46:21 -0700648ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
649 const void *from, size_t available)
650{
651 loff_t pos = *ppos;
652
653 if (pos < 0)
654 return -EINVAL;
655 if (pos >= available)
656 return 0;
657 if (count > available - pos)
658 count = available - pos;
659 memcpy(to, from + pos, count);
660 *ppos = pos + count;
661
662 return count;
663}
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665/*
666 * Transaction based IO.
667 * The file expects a single write which triggers the transaction, and then
668 * possibly a read which collects the result - which is stored in a
669 * file-local buffer.
670 */
Ingo Molnar76791ab2009-03-25 16:48:35 +0100671
672void simple_transaction_set(struct file *file, size_t n)
673{
674 struct simple_transaction_argresp *ar = file->private_data;
675
676 BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
677
678 /*
679 * The barrier ensures that ar->size will really remain zero until
680 * ar->data is ready for reading.
681 */
682 smp_mb();
683 ar->size = n;
684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686char *simple_transaction_get(struct file *file, const char __user *buf, size_t size)
687{
688 struct simple_transaction_argresp *ar;
689 static DEFINE_SPINLOCK(simple_transaction_lock);
690
691 if (size > SIMPLE_TRANSACTION_LIMIT - 1)
692 return ERR_PTR(-EFBIG);
693
694 ar = (struct simple_transaction_argresp *)get_zeroed_page(GFP_KERNEL);
695 if (!ar)
696 return ERR_PTR(-ENOMEM);
697
698 spin_lock(&simple_transaction_lock);
699
700 /* only one write allowed per open */
701 if (file->private_data) {
702 spin_unlock(&simple_transaction_lock);
703 free_page((unsigned long)ar);
704 return ERR_PTR(-EBUSY);
705 }
706
707 file->private_data = ar;
708
709 spin_unlock(&simple_transaction_lock);
710
711 if (copy_from_user(ar->data, buf, size))
712 return ERR_PTR(-EFAULT);
713
714 return ar->data;
715}
716
717ssize_t simple_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
718{
719 struct simple_transaction_argresp *ar = file->private_data;
720
721 if (!ar)
722 return 0;
723 return simple_read_from_buffer(buf, size, pos, ar->data, ar->size);
724}
725
726int simple_transaction_release(struct inode *inode, struct file *file)
727{
728 free_page((unsigned long)file->private_data);
729 return 0;
730}
731
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200732/* Simple attribute files */
733
734struct simple_attr {
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800735 int (*get)(void *, u64 *);
736 int (*set)(void *, u64);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200737 char get_buf[24]; /* enough to store a u64 and "\n\0" */
738 char set_buf[24];
739 void *data;
740 const char *fmt; /* format for read operation */
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800741 struct mutex mutex; /* protects access to these buffers */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200742};
743
744/* simple_attr_open is called by an actual attribute open file operation
745 * to set the attribute specific access operations. */
746int simple_attr_open(struct inode *inode, struct file *file,
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800747 int (*get)(void *, u64 *), int (*set)(void *, u64),
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200748 const char *fmt)
749{
750 struct simple_attr *attr;
751
752 attr = kmalloc(sizeof(*attr), GFP_KERNEL);
753 if (!attr)
754 return -ENOMEM;
755
756 attr->get = get;
757 attr->set = set;
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700758 attr->data = inode->i_private;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200759 attr->fmt = fmt;
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800760 mutex_init(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200761
762 file->private_data = attr;
763
764 return nonseekable_open(inode, file);
765}
766
Christoph Hellwig74bedc42008-02-08 04:20:28 -0800767int simple_attr_release(struct inode *inode, struct file *file)
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200768{
769 kfree(file->private_data);
770 return 0;
771}
772
773/* read from the buffer that is filled with the get function */
774ssize_t simple_attr_read(struct file *file, char __user *buf,
775 size_t len, loff_t *ppos)
776{
777 struct simple_attr *attr;
778 size_t size;
779 ssize_t ret;
780
781 attr = file->private_data;
782
783 if (!attr->get)
784 return -EACCES;
785
Christoph Hellwig92613032008-02-08 04:20:27 -0800786 ret = mutex_lock_interruptible(&attr->mutex);
787 if (ret)
788 return ret;
789
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800790 if (*ppos) { /* continued read */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200791 size = strlen(attr->get_buf);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800792 } else { /* first read */
793 u64 val;
794 ret = attr->get(attr->data, &val);
795 if (ret)
796 goto out;
797
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200798 size = scnprintf(attr->get_buf, sizeof(attr->get_buf),
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800799 attr->fmt, (unsigned long long)val);
800 }
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200801
802 ret = simple_read_from_buffer(buf, len, ppos, attr->get_buf, size);
Christoph Hellwig8b88b092008-02-08 04:20:26 -0800803out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800804 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200805 return ret;
806}
807
808/* interpret the buffer as a number to call the set function with */
809ssize_t simple_attr_write(struct file *file, const char __user *buf,
810 size_t len, loff_t *ppos)
811{
812 struct simple_attr *attr;
813 u64 val;
814 size_t size;
815 ssize_t ret;
816
817 attr = file->private_data;
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200818 if (!attr->set)
819 return -EACCES;
820
Christoph Hellwig92613032008-02-08 04:20:27 -0800821 ret = mutex_lock_interruptible(&attr->mutex);
822 if (ret)
823 return ret;
824
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200825 ret = -EFAULT;
826 size = min(sizeof(attr->set_buf) - 1, len);
827 if (copy_from_user(attr->set_buf, buf, size))
828 goto out;
829
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200830 attr->set_buf[size] = '\0';
831 val = simple_strtol(attr->set_buf, NULL, 0);
Wu Fengguang05cc0ce2009-09-18 13:06:03 -0700832 ret = attr->set(attr->data, val);
833 if (ret == 0)
834 ret = len; /* on success, claim we got the whole input */
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200835out:
Ingo Molnar7cf34c72006-03-23 03:00:36 -0800836 mutex_unlock(&attr->mutex);
Arnd Bergmannacaefc22005-05-18 14:40:59 +0200837 return ret;
838}
839
Christoph Hellwig25961102007-10-21 16:42:05 -0700840/**
841 * generic_fh_to_dentry - generic helper for the fh_to_dentry export operation
842 * @sb: filesystem to do the file handle conversion on
843 * @fid: file handle to convert
844 * @fh_len: length of the file handle in bytes
845 * @fh_type: type of file handle
846 * @get_inode: filesystem callback to retrieve inode
847 *
848 * This function decodes @fid as long as it has one of the well-known
849 * Linux filehandle types and calls @get_inode on it to retrieve the
850 * inode for the object specified in the file handle.
851 */
852struct dentry *generic_fh_to_dentry(struct super_block *sb, struct fid *fid,
853 int fh_len, int fh_type, struct inode *(*get_inode)
854 (struct super_block *sb, u64 ino, u32 gen))
855{
856 struct inode *inode = NULL;
857
858 if (fh_len < 2)
859 return NULL;
860
861 switch (fh_type) {
862 case FILEID_INO32_GEN:
863 case FILEID_INO32_GEN_PARENT:
864 inode = get_inode(sb, fid->i32.ino, fid->i32.gen);
865 break;
866 }
867
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200868 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700869}
870EXPORT_SYMBOL_GPL(generic_fh_to_dentry);
871
872/**
873 * generic_fh_to_dentry - generic helper for the fh_to_parent export operation
874 * @sb: filesystem to do the file handle conversion on
875 * @fid: file handle to convert
876 * @fh_len: length of the file handle in bytes
877 * @fh_type: type of file handle
878 * @get_inode: filesystem callback to retrieve inode
879 *
880 * This function decodes @fid as long as it has one of the well-known
881 * Linux filehandle types and calls @get_inode on it to retrieve the
882 * inode for the _parent_ object specified in the file handle if it
883 * is specified in the file handle, or NULL otherwise.
884 */
885struct dentry *generic_fh_to_parent(struct super_block *sb, struct fid *fid,
886 int fh_len, int fh_type, struct inode *(*get_inode)
887 (struct super_block *sb, u64 ino, u32 gen))
888{
889 struct inode *inode = NULL;
890
891 if (fh_len <= 2)
892 return NULL;
893
894 switch (fh_type) {
895 case FILEID_INO32_GEN_PARENT:
896 inode = get_inode(sb, fid->i32.parent_ino,
897 (fh_len > 3 ? fid->i32.parent_gen : 0));
898 break;
899 }
900
Christoph Hellwig4ea3ada2008-08-11 15:48:57 +0200901 return d_obtain_alias(inode);
Christoph Hellwig25961102007-10-21 16:42:05 -0700902}
903EXPORT_SYMBOL_GPL(generic_fh_to_parent);
904
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200905/**
906 * generic_file_fsync - generic fsync implementation for simple filesystems
907 * @file: file to synchronize
908 * @datasync: only synchronize essential metadata if true
909 *
910 * This is a generic implementation of the fsync method for simple
911 * filesystems which track all non-inode metadata in the buffers list
912 * hanging off the address_space structure.
913 */
914int generic_file_fsync(struct file *file, int datasync)
Al Virod5aacad2009-06-07 14:56:44 -0400915{
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200916 struct inode *inode = file->f_mapping->host;
Al Virod5aacad2009-06-07 14:56:44 -0400917 int err;
918 int ret;
919
920 ret = sync_mapping_buffers(inode->i_mapping);
921 if (!(inode->i_state & I_DIRTY))
922 return ret;
923 if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
924 return ret;
925
Christoph Hellwigc37650162010-10-06 10:48:20 +0200926 err = sync_inode_metadata(inode, 1);
Al Virod5aacad2009-06-07 14:56:44 -0400927 if (ret == 0)
928 ret = err;
929 return ret;
930}
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200931EXPORT_SYMBOL(generic_file_fsync);
932
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700933/**
934 * generic_check_addressable - Check addressability of file system
935 * @blocksize_bits: log of file system block size
936 * @num_blocks: number of blocks in file system
937 *
938 * Determine whether a file system with @num_blocks blocks (and a
939 * block size of 2**@blocksize_bits) is addressable by the sector_t
940 * and page cache of the system. Return 0 if so and -EFBIG otherwise.
941 */
942int generic_check_addressable(unsigned blocksize_bits, u64 num_blocks)
943{
944 u64 last_fs_block = num_blocks - 1;
Joel Beckera33f13e2010-08-16 12:10:17 -0700945 u64 last_fs_page =
946 last_fs_block >> (PAGE_CACHE_SHIFT - blocksize_bits);
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700947
948 if (unlikely(num_blocks == 0))
949 return 0;
950
951 if ((blocksize_bits < 9) || (blocksize_bits > PAGE_CACHE_SHIFT))
952 return -EINVAL;
953
Joel Beckera33f13e2010-08-16 12:10:17 -0700954 if ((last_fs_block > (sector_t)(~0ULL) >> (blocksize_bits - 9)) ||
955 (last_fs_page > (pgoff_t)(~0ULL))) {
Patrick J. LoPresti30ca22c2010-07-22 15:03:41 -0700956 return -EFBIG;
957 }
958 return 0;
959}
960EXPORT_SYMBOL(generic_check_addressable);
961
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200962/*
963 * No-op implementation of ->fsync for in-memory filesystems.
964 */
965int noop_fsync(struct file *file, int datasync)
966{
967 return 0;
968}
Al Virod5aacad2009-06-07 14:56:44 -0400969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970EXPORT_SYMBOL(dcache_dir_close);
971EXPORT_SYMBOL(dcache_dir_lseek);
972EXPORT_SYMBOL(dcache_dir_open);
973EXPORT_SYMBOL(dcache_readdir);
974EXPORT_SYMBOL(generic_read_dir);
Al Viro51139ad2010-07-25 23:47:46 +0400975EXPORT_SYMBOL(mount_pseudo);
Nick Pigginafddba42007-10-16 01:25:01 -0700976EXPORT_SYMBOL(simple_write_begin);
977EXPORT_SYMBOL(simple_write_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978EXPORT_SYMBOL(simple_dir_inode_operations);
979EXPORT_SYMBOL(simple_dir_operations);
980EXPORT_SYMBOL(simple_empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981EXPORT_SYMBOL(simple_fill_super);
982EXPORT_SYMBOL(simple_getattr);
983EXPORT_SYMBOL(simple_link);
984EXPORT_SYMBOL(simple_lookup);
985EXPORT_SYMBOL(simple_pin_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986EXPORT_SYMBOL(simple_readpage);
987EXPORT_SYMBOL(simple_release_fs);
988EXPORT_SYMBOL(simple_rename);
989EXPORT_SYMBOL(simple_rmdir);
990EXPORT_SYMBOL(simple_statfs);
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200991EXPORT_SYMBOL(noop_fsync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992EXPORT_SYMBOL(simple_unlink);
993EXPORT_SYMBOL(simple_read_from_buffer);
Jiri Slaby6a727b42010-05-01 23:51:22 +0200994EXPORT_SYMBOL(simple_write_to_buffer);
Akinobu Mita93b07112008-06-05 22:46:21 -0700995EXPORT_SYMBOL(memory_read_from_buffer);
Ingo Molnar76791ab2009-03-25 16:48:35 +0100996EXPORT_SYMBOL(simple_transaction_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997EXPORT_SYMBOL(simple_transaction_get);
998EXPORT_SYMBOL(simple_transaction_read);
999EXPORT_SYMBOL(simple_transaction_release);
Arnd Bergmannacaefc22005-05-18 14:40:59 +02001000EXPORT_SYMBOL_GPL(simple_attr_open);
Christoph Hellwig74bedc42008-02-08 04:20:28 -08001001EXPORT_SYMBOL_GPL(simple_attr_release);
Arnd Bergmannacaefc22005-05-18 14:40:59 +02001002EXPORT_SYMBOL_GPL(simple_attr_read);
1003EXPORT_SYMBOL_GPL(simple_attr_write);