2 * SPU file system -- system call stubs
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
5 * (C) Copyright 2006-2007, IBM Corporation
7 * Author: Arnd Bergmann <arndb@de.ibm.com>
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)
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.
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.
23 #include <linux/file.h>
25 #include <linux/module.h>
26 #include <linux/syscalls.h>
27 #include <linux/rcupdate.h>
28 #include <linux/binfmts.h>
32 /* protected by rcu */
33 static struct spufs_calls
*spufs_calls
;
35 #ifdef CONFIG_SPU_FS_MODULE
37 static inline struct spufs_calls
*spufs_calls_get(void)
39 struct spufs_calls
*calls
= NULL
;
42 calls
= rcu_dereference(spufs_calls
);
43 if (calls
&& !try_module_get(calls
->owner
))
50 static inline void spufs_calls_put(struct spufs_calls
*calls
)
52 BUG_ON(calls
!= spufs_calls
);
54 /* we don't need to rcu this, as we hold a reference to the module */
55 module_put(spufs_calls
->owner
);
58 #else /* !defined CONFIG_SPU_FS_MODULE */
60 static inline struct spufs_calls
*spufs_calls_get(void)
65 static inline void spufs_calls_put(struct spufs_calls
*calls
) { }
67 #endif /* CONFIG_SPU_FS_MODULE */
69 SYSCALL_DEFINE4(spu_create
, const char __user
*, name
, unsigned int, flags
,
70 umode_t
, mode
, int, neighbor_fd
)
73 struct spufs_calls
*calls
;
75 calls
= spufs_calls_get();
79 if (flags
& SPU_CREATE_AFFINITY_SPU
) {
80 struct fd neighbor
= fdget(neighbor_fd
);
83 ret
= calls
->create_thread(name
, flags
, mode
, neighbor
.file
);
87 ret
= calls
->create_thread(name
, flags
, mode
, NULL
);
89 spufs_calls_put(calls
);
93 asmlinkage
long sys_spu_run(int fd
, __u32 __user
*unpc
, __u32 __user
*ustatus
)
97 struct spufs_calls
*calls
;
99 calls
= spufs_calls_get();
106 ret
= calls
->spu_run(arg
.file
, unpc
, ustatus
);
110 spufs_calls_put(calls
);
114 #ifdef CONFIG_COREDUMP
115 int elf_coredump_extra_notes_size(void)
117 struct spufs_calls
*calls
;
120 calls
= spufs_calls_get();
124 ret
= calls
->coredump_extra_notes_size();
126 spufs_calls_put(calls
);
131 int elf_coredump_extra_notes_write(struct coredump_params
*cprm
)
133 struct spufs_calls
*calls
;
136 calls
= spufs_calls_get();
140 ret
= calls
->coredump_extra_notes_write(cprm
);
142 spufs_calls_put(calls
);
148 void notify_spus_active(void)
150 struct spufs_calls
*calls
;
152 calls
= spufs_calls_get();
156 calls
->notify_spus_active();
157 spufs_calls_put(calls
);
162 int register_spu_syscalls(struct spufs_calls
*calls
)
167 rcu_assign_pointer(spufs_calls
, calls
);
170 EXPORT_SYMBOL_GPL(register_spu_syscalls
);
172 void unregister_spu_syscalls(struct spufs_calls
*calls
)
174 BUG_ON(spufs_calls
->owner
!= calls
->owner
);
175 RCU_INIT_POINTER(spufs_calls
, NULL
);
178 EXPORT_SYMBOL_GPL(unregister_spu_syscalls
);