Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 292353
b: refs/heads/master
c: 640045a
h: refs/heads/master
i:
  292351: f68dd39
v: v3
  • Loading branch information
Al Viro committed Mar 21, 2012
1 parent c6728e6 commit 4088d53
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 765fd6b23d8b1130bd9e2c995040b137faa0992d
refs/heads/master: 640045a1cd21d002caafa9eb9ed66cc31b88076a
10 changes: 5 additions & 5 deletions trunk/arch/powerpc/platforms/cell/spufs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -828,19 +828,19 @@ static int __init spufs_init(void)
ret = spu_sched_init();
if (ret)
goto out_cache;
ret = register_filesystem(&spufs_type);
ret = register_spu_syscalls(&spufs_calls);
if (ret)
goto out_sched;
ret = register_spu_syscalls(&spufs_calls);
ret = register_filesystem(&spufs_type);
if (ret)
goto out_fs;
goto out_syscalls;

spufs_init_isolated_loader();

return 0;

out_fs:
unregister_filesystem(&spufs_type);
out_syscalls:
unregister_spu_syscalls(&spufs_calls);
out_sched:
spu_sched_exit();
out_cache:
Expand Down

0 comments on commit 4088d53

Please sign in to comment.