Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43582
b: refs/heads/master
c: 4d832d4
h: refs/heads/master
v: v3
  • Loading branch information
Josef Sipek authored and Linus Torvalds committed Dec 8, 2006
1 parent 78acc3d commit 636bff4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d1f229744ece0b7aa7ce89ecd1fb598b90305d5b
refs/heads/master: 4d832d460e13dd9c2cc93739ac0fd75bd8645e93
6 changes: 3 additions & 3 deletions trunk/fs/jffs/inode-v23.c
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ static int
jffs_readdir(struct file *filp, void *dirent, filldir_t filldir)
{
struct jffs_file *f;
struct dentry *dentry = filp->f_dentry;
struct dentry *dentry = filp->f_path.dentry;
struct inode *inode = dentry->d_inode;
struct jffs_control *c = (struct jffs_control *)inode->i_sb->s_fs_info;
int j;
Expand Down Expand Up @@ -1372,15 +1372,15 @@ jffs_file_write(struct file *filp, const char *buf, size_t count,
struct jffs_control *c;
struct jffs_file *f;
struct jffs_node *node;
struct dentry *dentry = filp->f_dentry;
struct dentry *dentry = filp->f_path.dentry;
struct inode *inode = dentry->d_inode;
int recoverable = 0;
size_t written = 0;
__u32 thiscount = count;
loff_t pos = *ppos;
int err;

inode = filp->f_dentry->d_inode;
inode = filp->f_path.dentry->d_inode;

D2(printk("***jffs_file_write(): inode: 0x%p (ino: %lu), "
"filp: 0x%p, buf: 0x%p, count: %d\n",
Expand Down

0 comments on commit 636bff4

Please sign in to comment.