switch dentry_open() to struct path, make it grab references itself
[deliverable/linux.git] / arch / powerpc / platforms / cell / spufs / inode.c
1
2 /*
3 * SPU file system
4 *
5 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
6 *
7 * Author: Arnd Bergmann <arndb@de.ibm.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include <linux/file.h>
25 #include <linux/fs.h>
26 #include <linux/fsnotify.h>
27 #include <linux/backing-dev.h>
28 #include <linux/init.h>
29 #include <linux/ioctl.h>
30 #include <linux/module.h>
31 #include <linux/mount.h>
32 #include <linux/namei.h>
33 #include <linux/pagemap.h>
34 #include <linux/poll.h>
35 #include <linux/slab.h>
36 #include <linux/parser.h>
37
38 #include <asm/prom.h>
39 #include <asm/spu.h>
40 #include <asm/spu_priv1.h>
41 #include <asm/uaccess.h>
42
43 #include "spufs.h"
44
45 struct spufs_sb_info {
46 int debug;
47 };
48
49 static struct kmem_cache *spufs_inode_cache;
50 char *isolated_loader;
51 static int isolated_loader_size;
52
53 static struct spufs_sb_info *spufs_get_sb_info(struct super_block *sb)
54 {
55 return sb->s_fs_info;
56 }
57
58 static struct inode *
59 spufs_alloc_inode(struct super_block *sb)
60 {
61 struct spufs_inode_info *ei;
62
63 ei = kmem_cache_alloc(spufs_inode_cache, GFP_KERNEL);
64 if (!ei)
65 return NULL;
66
67 ei->i_gang = NULL;
68 ei->i_ctx = NULL;
69 ei->i_openers = 0;
70
71 return &ei->vfs_inode;
72 }
73
74 static void spufs_i_callback(struct rcu_head *head)
75 {
76 struct inode *inode = container_of(head, struct inode, i_rcu);
77 kmem_cache_free(spufs_inode_cache, SPUFS_I(inode));
78 }
79
80 static void spufs_destroy_inode(struct inode *inode)
81 {
82 call_rcu(&inode->i_rcu, spufs_i_callback);
83 }
84
85 static void
86 spufs_init_once(void *p)
87 {
88 struct spufs_inode_info *ei = p;
89
90 inode_init_once(&ei->vfs_inode);
91 }
92
93 static struct inode *
94 spufs_new_inode(struct super_block *sb, umode_t mode)
95 {
96 struct inode *inode;
97
98 inode = new_inode(sb);
99 if (!inode)
100 goto out;
101
102 inode->i_mode = mode;
103 inode->i_uid = current_fsuid();
104 inode->i_gid = current_fsgid();
105 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
106 out:
107 return inode;
108 }
109
110 static int
111 spufs_setattr(struct dentry *dentry, struct iattr *attr)
112 {
113 struct inode *inode = dentry->d_inode;
114
115 if ((attr->ia_valid & ATTR_SIZE) &&
116 (attr->ia_size != inode->i_size))
117 return -EINVAL;
118 setattr_copy(inode, attr);
119 mark_inode_dirty(inode);
120 return 0;
121 }
122
123
124 static int
125 spufs_new_file(struct super_block *sb, struct dentry *dentry,
126 const struct file_operations *fops, umode_t mode,
127 size_t size, struct spu_context *ctx)
128 {
129 static const struct inode_operations spufs_file_iops = {
130 .setattr = spufs_setattr,
131 };
132 struct inode *inode;
133 int ret;
134
135 ret = -ENOSPC;
136 inode = spufs_new_inode(sb, S_IFREG | mode);
137 if (!inode)
138 goto out;
139
140 ret = 0;
141 inode->i_op = &spufs_file_iops;
142 inode->i_fop = fops;
143 inode->i_size = size;
144 inode->i_private = SPUFS_I(inode)->i_ctx = get_spu_context(ctx);
145 d_add(dentry, inode);
146 out:
147 return ret;
148 }
149
150 static void
151 spufs_evict_inode(struct inode *inode)
152 {
153 struct spufs_inode_info *ei = SPUFS_I(inode);
154 clear_inode(inode);
155 if (ei->i_ctx)
156 put_spu_context(ei->i_ctx);
157 if (ei->i_gang)
158 put_spu_gang(ei->i_gang);
159 }
160
161 static void spufs_prune_dir(struct dentry *dir)
162 {
163 struct dentry *dentry, *tmp;
164
165 mutex_lock(&dir->d_inode->i_mutex);
166 list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
167 spin_lock(&dentry->d_lock);
168 if (!(d_unhashed(dentry)) && dentry->d_inode) {
169 dget_dlock(dentry);
170 __d_drop(dentry);
171 spin_unlock(&dentry->d_lock);
172 simple_unlink(dir->d_inode, dentry);
173 /* XXX: what was dcache_lock protecting here? Other
174 * filesystems (IB, configfs) release dcache_lock
175 * before unlink */
176 dput(dentry);
177 } else {
178 spin_unlock(&dentry->d_lock);
179 }
180 }
181 shrink_dcache_parent(dir);
182 mutex_unlock(&dir->d_inode->i_mutex);
183 }
184
185 /* Caller must hold parent->i_mutex */
186 static int spufs_rmdir(struct inode *parent, struct dentry *dir)
187 {
188 /* remove all entries */
189 spufs_prune_dir(dir);
190 d_drop(dir);
191
192 return simple_rmdir(parent, dir);
193 }
194
195 static int spufs_fill_dir(struct dentry *dir,
196 const struct spufs_tree_descr *files, umode_t mode,
197 struct spu_context *ctx)
198 {
199 struct dentry *dentry, *tmp;
200 int ret;
201
202 while (files->name && files->name[0]) {
203 ret = -ENOMEM;
204 dentry = d_alloc_name(dir, files->name);
205 if (!dentry)
206 goto out;
207 ret = spufs_new_file(dir->d_sb, dentry, files->ops,
208 files->mode & mode, files->size, ctx);
209 if (ret)
210 goto out;
211 files++;
212 }
213 return 0;
214 out:
215 /*
216 * remove all children from dir. dir->inode is not set so don't
217 * just simply use spufs_prune_dir() and panic afterwards :)
218 * dput() looks like it will do the right thing:
219 * - dec parent's ref counter
220 * - remove child from parent's child list
221 * - free child's inode if possible
222 * - free child
223 */
224 list_for_each_entry_safe(dentry, tmp, &dir->d_subdirs, d_u.d_child) {
225 dput(dentry);
226 }
227
228 shrink_dcache_parent(dir);
229 return ret;
230 }
231
232 static int spufs_dir_close(struct inode *inode, struct file *file)
233 {
234 struct spu_context *ctx;
235 struct inode *parent;
236 struct dentry *dir;
237 int ret;
238
239 dir = file->f_path.dentry;
240 parent = dir->d_parent->d_inode;
241 ctx = SPUFS_I(dir->d_inode)->i_ctx;
242
243 mutex_lock_nested(&parent->i_mutex, I_MUTEX_PARENT);
244 ret = spufs_rmdir(parent, dir);
245 mutex_unlock(&parent->i_mutex);
246 WARN_ON(ret);
247
248 /* We have to give up the mm_struct */
249 spu_forget(ctx);
250
251 return dcache_dir_close(inode, file);
252 }
253
254 const struct file_operations spufs_context_fops = {
255 .open = dcache_dir_open,
256 .release = spufs_dir_close,
257 .llseek = dcache_dir_lseek,
258 .read = generic_read_dir,
259 .readdir = dcache_readdir,
260 .fsync = noop_fsync,
261 };
262 EXPORT_SYMBOL_GPL(spufs_context_fops);
263
264 static int
265 spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,
266 umode_t mode)
267 {
268 int ret;
269 struct inode *inode;
270 struct spu_context *ctx;
271
272 ret = -ENOSPC;
273 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
274 if (!inode)
275 goto out;
276
277 if (dir->i_mode & S_ISGID) {
278 inode->i_gid = dir->i_gid;
279 inode->i_mode &= S_ISGID;
280 }
281 ctx = alloc_spu_context(SPUFS_I(dir)->i_gang); /* XXX gang */
282 SPUFS_I(inode)->i_ctx = ctx;
283 if (!ctx)
284 goto out_iput;
285
286 ctx->flags = flags;
287 inode->i_op = &simple_dir_inode_operations;
288 inode->i_fop = &simple_dir_operations;
289 if (flags & SPU_CREATE_NOSCHED)
290 ret = spufs_fill_dir(dentry, spufs_dir_nosched_contents,
291 mode, ctx);
292 else
293 ret = spufs_fill_dir(dentry, spufs_dir_contents, mode, ctx);
294
295 if (ret)
296 goto out_free_ctx;
297
298 if (spufs_get_sb_info(dir->i_sb)->debug)
299 ret = spufs_fill_dir(dentry, spufs_dir_debug_contents,
300 mode, ctx);
301
302 if (ret)
303 goto out_free_ctx;
304
305 d_instantiate(dentry, inode);
306 dget(dentry);
307 inc_nlink(dir);
308 inc_nlink(dentry->d_inode);
309 goto out;
310
311 out_free_ctx:
312 spu_forget(ctx);
313 put_spu_context(ctx);
314 out_iput:
315 iput(inode);
316 out:
317 return ret;
318 }
319
320 static int spufs_context_open(struct path *path)
321 {
322 int ret;
323 struct file *filp;
324
325 ret = get_unused_fd();
326 if (ret < 0)
327 return ret;
328
329 filp = dentry_open(path, O_RDONLY, current_cred());
330 if (IS_ERR(filp)) {
331 put_unused_fd(ret);
332 return PTR_ERR(filp);
333 }
334
335 filp->f_op = &spufs_context_fops;
336 fd_install(ret, filp);
337 return ret;
338 }
339
340 static struct spu_context *
341 spufs_assert_affinity(unsigned int flags, struct spu_gang *gang,
342 struct file *filp)
343 {
344 struct spu_context *tmp, *neighbor, *err;
345 int count, node;
346 int aff_supp;
347
348 aff_supp = !list_empty(&(list_entry(cbe_spu_info[0].spus.next,
349 struct spu, cbe_list))->aff_list);
350
351 if (!aff_supp)
352 return ERR_PTR(-EINVAL);
353
354 if (flags & SPU_CREATE_GANG)
355 return ERR_PTR(-EINVAL);
356
357 if (flags & SPU_CREATE_AFFINITY_MEM &&
358 gang->aff_ref_ctx &&
359 gang->aff_ref_ctx->flags & SPU_CREATE_AFFINITY_MEM)
360 return ERR_PTR(-EEXIST);
361
362 if (gang->aff_flags & AFF_MERGED)
363 return ERR_PTR(-EBUSY);
364
365 neighbor = NULL;
366 if (flags & SPU_CREATE_AFFINITY_SPU) {
367 if (!filp || filp->f_op != &spufs_context_fops)
368 return ERR_PTR(-EINVAL);
369
370 neighbor = get_spu_context(
371 SPUFS_I(filp->f_dentry->d_inode)->i_ctx);
372
373 if (!list_empty(&neighbor->aff_list) && !(neighbor->aff_head) &&
374 !list_is_last(&neighbor->aff_list, &gang->aff_list_head) &&
375 !list_entry(neighbor->aff_list.next, struct spu_context,
376 aff_list)->aff_head) {
377 err = ERR_PTR(-EEXIST);
378 goto out_put_neighbor;
379 }
380
381 if (gang != neighbor->gang) {
382 err = ERR_PTR(-EINVAL);
383 goto out_put_neighbor;
384 }
385
386 count = 1;
387 list_for_each_entry(tmp, &gang->aff_list_head, aff_list)
388 count++;
389 if (list_empty(&neighbor->aff_list))
390 count++;
391
392 for (node = 0; node < MAX_NUMNODES; node++) {
393 if ((cbe_spu_info[node].n_spus - atomic_read(
394 &cbe_spu_info[node].reserved_spus)) >= count)
395 break;
396 }
397
398 if (node == MAX_NUMNODES) {
399 err = ERR_PTR(-EEXIST);
400 goto out_put_neighbor;
401 }
402 }
403
404 return neighbor;
405
406 out_put_neighbor:
407 put_spu_context(neighbor);
408 return err;
409 }
410
411 static void
412 spufs_set_affinity(unsigned int flags, struct spu_context *ctx,
413 struct spu_context *neighbor)
414 {
415 if (flags & SPU_CREATE_AFFINITY_MEM)
416 ctx->gang->aff_ref_ctx = ctx;
417
418 if (flags & SPU_CREATE_AFFINITY_SPU) {
419 if (list_empty(&neighbor->aff_list)) {
420 list_add_tail(&neighbor->aff_list,
421 &ctx->gang->aff_list_head);
422 neighbor->aff_head = 1;
423 }
424
425 if (list_is_last(&neighbor->aff_list, &ctx->gang->aff_list_head)
426 || list_entry(neighbor->aff_list.next, struct spu_context,
427 aff_list)->aff_head) {
428 list_add(&ctx->aff_list, &neighbor->aff_list);
429 } else {
430 list_add_tail(&ctx->aff_list, &neighbor->aff_list);
431 if (neighbor->aff_head) {
432 neighbor->aff_head = 0;
433 ctx->aff_head = 1;
434 }
435 }
436
437 if (!ctx->gang->aff_ref_ctx)
438 ctx->gang->aff_ref_ctx = ctx;
439 }
440 }
441
442 static int
443 spufs_create_context(struct inode *inode, struct dentry *dentry,
444 struct vfsmount *mnt, int flags, umode_t mode,
445 struct file *aff_filp)
446 {
447 int ret;
448 int affinity;
449 struct spu_gang *gang;
450 struct spu_context *neighbor;
451 struct path path = {.mnt = mnt, .dentry = dentry};
452
453 ret = -EPERM;
454 if ((flags & SPU_CREATE_NOSCHED) &&
455 !capable(CAP_SYS_NICE))
456 goto out_unlock;
457
458 ret = -EINVAL;
459 if ((flags & (SPU_CREATE_NOSCHED | SPU_CREATE_ISOLATE))
460 == SPU_CREATE_ISOLATE)
461 goto out_unlock;
462
463 ret = -ENODEV;
464 if ((flags & SPU_CREATE_ISOLATE) && !isolated_loader)
465 goto out_unlock;
466
467 gang = NULL;
468 neighbor = NULL;
469 affinity = flags & (SPU_CREATE_AFFINITY_MEM | SPU_CREATE_AFFINITY_SPU);
470 if (affinity) {
471 gang = SPUFS_I(inode)->i_gang;
472 ret = -EINVAL;
473 if (!gang)
474 goto out_unlock;
475 mutex_lock(&gang->aff_mutex);
476 neighbor = spufs_assert_affinity(flags, gang, aff_filp);
477 if (IS_ERR(neighbor)) {
478 ret = PTR_ERR(neighbor);
479 goto out_aff_unlock;
480 }
481 }
482
483 ret = spufs_mkdir(inode, dentry, flags, mode & S_IRWXUGO);
484 if (ret)
485 goto out_aff_unlock;
486
487 if (affinity) {
488 spufs_set_affinity(flags, SPUFS_I(dentry->d_inode)->i_ctx,
489 neighbor);
490 if (neighbor)
491 put_spu_context(neighbor);
492 }
493
494 ret = spufs_context_open(&path);
495 if (ret < 0) {
496 WARN_ON(spufs_rmdir(inode, dentry));
497 if (affinity)
498 mutex_unlock(&gang->aff_mutex);
499 mutex_unlock(&inode->i_mutex);
500 spu_forget(SPUFS_I(dentry->d_inode)->i_ctx);
501 goto out;
502 }
503
504 out_aff_unlock:
505 if (affinity)
506 mutex_unlock(&gang->aff_mutex);
507 out_unlock:
508 mutex_unlock(&inode->i_mutex);
509 out:
510 dput(dentry);
511 return ret;
512 }
513
514 static int
515 spufs_mkgang(struct inode *dir, struct dentry *dentry, umode_t mode)
516 {
517 int ret;
518 struct inode *inode;
519 struct spu_gang *gang;
520
521 ret = -ENOSPC;
522 inode = spufs_new_inode(dir->i_sb, mode | S_IFDIR);
523 if (!inode)
524 goto out;
525
526 ret = 0;
527 if (dir->i_mode & S_ISGID) {
528 inode->i_gid = dir->i_gid;
529 inode->i_mode &= S_ISGID;
530 }
531 gang = alloc_spu_gang();
532 SPUFS_I(inode)->i_ctx = NULL;
533 SPUFS_I(inode)->i_gang = gang;
534 if (!gang)
535 goto out_iput;
536
537 inode->i_op = &simple_dir_inode_operations;
538 inode->i_fop = &simple_dir_operations;
539
540 d_instantiate(dentry, inode);
541 inc_nlink(dir);
542 inc_nlink(dentry->d_inode);
543 return ret;
544
545 out_iput:
546 iput(inode);
547 out:
548 return ret;
549 }
550
551 static int spufs_gang_open(struct path *path)
552 {
553 int ret;
554 struct file *filp;
555
556 ret = get_unused_fd();
557 if (ret < 0)
558 return ret;
559
560 /*
561 * get references for dget and mntget, will be released
562 * in error path of *_open().
563 */
564 filp = dentry_open(path, O_RDONLY, current_cred());
565 if (IS_ERR(filp)) {
566 put_unused_fd(ret);
567 return PTR_ERR(filp);
568 }
569
570 filp->f_op = &simple_dir_operations;
571 fd_install(ret, filp);
572 return ret;
573 }
574
575 static int spufs_create_gang(struct inode *inode,
576 struct dentry *dentry,
577 struct vfsmount *mnt, umode_t mode)
578 {
579 struct path path = {.mnt = mnt, .dentry = dentry};
580 int ret;
581
582 ret = spufs_mkgang(inode, dentry, mode & S_IRWXUGO);
583 if (ret)
584 goto out;
585
586 ret = spufs_gang_open(&path);
587 if (ret < 0) {
588 int err = simple_rmdir(inode, dentry);
589 WARN_ON(err);
590 }
591
592 out:
593 mutex_unlock(&inode->i_mutex);
594 dput(dentry);
595 return ret;
596 }
597
598
599 static struct file_system_type spufs_type;
600
601 long spufs_create(struct path *path, struct dentry *dentry,
602 unsigned int flags, umode_t mode, struct file *filp)
603 {
604 int ret;
605
606 ret = -EINVAL;
607 /* check if we are on spufs */
608 if (path->dentry->d_sb->s_type != &spufs_type)
609 goto out;
610
611 /* don't accept undefined flags */
612 if (flags & (~SPU_CREATE_FLAG_ALL))
613 goto out;
614
615 /* only threads can be underneath a gang */
616 if (path->dentry != path->dentry->d_sb->s_root) {
617 if ((flags & SPU_CREATE_GANG) ||
618 !SPUFS_I(path->dentry->d_inode)->i_gang)
619 goto out;
620 }
621
622 mode &= ~current_umask();
623
624 if (flags & SPU_CREATE_GANG)
625 ret = spufs_create_gang(path->dentry->d_inode,
626 dentry, path->mnt, mode);
627 else
628 ret = spufs_create_context(path->dentry->d_inode,
629 dentry, path->mnt, flags, mode,
630 filp);
631 if (ret >= 0)
632 fsnotify_mkdir(path->dentry->d_inode, dentry);
633 return ret;
634
635 out:
636 mutex_unlock(&path->dentry->d_inode->i_mutex);
637 dput(dentry);
638 return ret;
639 }
640
641 /* File system initialization */
642 enum {
643 Opt_uid, Opt_gid, Opt_mode, Opt_debug, Opt_err,
644 };
645
646 static const match_table_t spufs_tokens = {
647 { Opt_uid, "uid=%d" },
648 { Opt_gid, "gid=%d" },
649 { Opt_mode, "mode=%o" },
650 { Opt_debug, "debug" },
651 { Opt_err, NULL },
652 };
653
654 static int
655 spufs_parse_options(struct super_block *sb, char *options, struct inode *root)
656 {
657 char *p;
658 substring_t args[MAX_OPT_ARGS];
659
660 while ((p = strsep(&options, ",")) != NULL) {
661 int token, option;
662
663 if (!*p)
664 continue;
665
666 token = match_token(p, spufs_tokens, args);
667 switch (token) {
668 case Opt_uid:
669 if (match_int(&args[0], &option))
670 return 0;
671 root->i_uid = option;
672 break;
673 case Opt_gid:
674 if (match_int(&args[0], &option))
675 return 0;
676 root->i_gid = option;
677 break;
678 case Opt_mode:
679 if (match_octal(&args[0], &option))
680 return 0;
681 root->i_mode = option | S_IFDIR;
682 break;
683 case Opt_debug:
684 spufs_get_sb_info(sb)->debug = 1;
685 break;
686 default:
687 return 0;
688 }
689 }
690 return 1;
691 }
692
693 static void spufs_exit_isolated_loader(void)
694 {
695 free_pages((unsigned long) isolated_loader,
696 get_order(isolated_loader_size));
697 }
698
699 static void
700 spufs_init_isolated_loader(void)
701 {
702 struct device_node *dn;
703 const char *loader;
704 int size;
705
706 dn = of_find_node_by_path("/spu-isolation");
707 if (!dn)
708 return;
709
710 loader = of_get_property(dn, "loader", &size);
711 if (!loader)
712 return;
713
714 /* the loader must be align on a 16 byte boundary */
715 isolated_loader = (char *)__get_free_pages(GFP_KERNEL, get_order(size));
716 if (!isolated_loader)
717 return;
718
719 isolated_loader_size = size;
720 memcpy(isolated_loader, loader, size);
721 printk(KERN_INFO "spufs: SPU isolation mode enabled\n");
722 }
723
724 static int
725 spufs_create_root(struct super_block *sb, void *data)
726 {
727 struct inode *inode;
728 int ret;
729
730 ret = -ENODEV;
731 if (!spu_management_ops)
732 goto out;
733
734 ret = -ENOMEM;
735 inode = spufs_new_inode(sb, S_IFDIR | 0775);
736 if (!inode)
737 goto out;
738
739 inode->i_op = &simple_dir_inode_operations;
740 inode->i_fop = &simple_dir_operations;
741 SPUFS_I(inode)->i_ctx = NULL;
742 inc_nlink(inode);
743
744 ret = -EINVAL;
745 if (!spufs_parse_options(sb, data, inode))
746 goto out_iput;
747
748 ret = -ENOMEM;
749 sb->s_root = d_make_root(inode);
750 if (!sb->s_root)
751 goto out;
752
753 return 0;
754 out_iput:
755 iput(inode);
756 out:
757 return ret;
758 }
759
760 static int
761 spufs_fill_super(struct super_block *sb, void *data, int silent)
762 {
763 struct spufs_sb_info *info;
764 static const struct super_operations s_ops = {
765 .alloc_inode = spufs_alloc_inode,
766 .destroy_inode = spufs_destroy_inode,
767 .statfs = simple_statfs,
768 .evict_inode = spufs_evict_inode,
769 .show_options = generic_show_options,
770 };
771
772 save_mount_options(sb, data);
773
774 info = kzalloc(sizeof(*info), GFP_KERNEL);
775 if (!info)
776 return -ENOMEM;
777
778 sb->s_maxbytes = MAX_LFS_FILESIZE;
779 sb->s_blocksize = PAGE_CACHE_SIZE;
780 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
781 sb->s_magic = SPUFS_MAGIC;
782 sb->s_op = &s_ops;
783 sb->s_fs_info = info;
784
785 return spufs_create_root(sb, data);
786 }
787
788 static struct dentry *
789 spufs_mount(struct file_system_type *fstype, int flags,
790 const char *name, void *data)
791 {
792 return mount_single(fstype, flags, data, spufs_fill_super);
793 }
794
795 static struct file_system_type spufs_type = {
796 .owner = THIS_MODULE,
797 .name = "spufs",
798 .mount = spufs_mount,
799 .kill_sb = kill_litter_super,
800 };
801
802 static int __init spufs_init(void)
803 {
804 int ret;
805
806 ret = -ENODEV;
807 if (!spu_management_ops)
808 goto out;
809
810 ret = -ENOMEM;
811 spufs_inode_cache = kmem_cache_create("spufs_inode_cache",
812 sizeof(struct spufs_inode_info), 0,
813 SLAB_HWCACHE_ALIGN, spufs_init_once);
814
815 if (!spufs_inode_cache)
816 goto out;
817 ret = spu_sched_init();
818 if (ret)
819 goto out_cache;
820 ret = register_spu_syscalls(&spufs_calls);
821 if (ret)
822 goto out_sched;
823 ret = register_filesystem(&spufs_type);
824 if (ret)
825 goto out_syscalls;
826
827 spufs_init_isolated_loader();
828
829 return 0;
830
831 out_syscalls:
832 unregister_spu_syscalls(&spufs_calls);
833 out_sched:
834 spu_sched_exit();
835 out_cache:
836 kmem_cache_destroy(spufs_inode_cache);
837 out:
838 return ret;
839 }
840 module_init(spufs_init);
841
842 static void __exit spufs_exit(void)
843 {
844 spu_sched_exit();
845 spufs_exit_isolated_loader();
846 unregister_spu_syscalls(&spufs_calls);
847 unregister_filesystem(&spufs_type);
848 kmem_cache_destroy(spufs_inode_cache);
849 }
850 module_exit(spufs_exit);
851
852 MODULE_LICENSE("GPL");
853 MODULE_AUTHOR("Arnd Bergmann <arndb@de.ibm.com>");
854
This page took 0.057466 seconds and 5 git commands to generate.