Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114606
b: refs/heads/master
c: ba0b996
h: refs/heads/master
v: v3
  • Loading branch information
Jeremy Kerr committed Oct 10, 2008
1 parent 3b5f5ad commit b0d983c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: e2ed6e4daa6f16f088600d98568cb5730b5238a6
refs/heads/master: ba0b996d01eaca4f3cc1f07dcc238fcad7e0d427
8 changes: 4 additions & 4 deletions trunk/arch/powerpc/platforms/cell/spufs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ spufs_mkdir(struct inode *dir, struct dentry *dentry, unsigned int flags,

d_instantiate(dentry, inode);
dget(dentry);
dir->i_nlink++;
dentry->d_inode->i_nlink++;
inc_nlink(dir);
inc_nlink(dentry->d_inode);
goto out;

out_free_ctx:
Expand Down Expand Up @@ -538,8 +538,8 @@ spufs_mkgang(struct inode *dir, struct dentry *dentry, int mode)
inode->i_fop = &simple_dir_operations;

d_instantiate(dentry, inode);
dir->i_nlink++;
dentry->d_inode->i_nlink++;
inc_nlink(dir);
inc_nlink(dentry->d_inode);
return ret;

out_iput:
Expand Down

0 comments on commit b0d983c

Please sign in to comment.