Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118458
b: refs/heads/master
c: 068f5ae
h: refs/heads/master
v: v3
  • Loading branch information
OGAWA Hirofumi authored and Linus Torvalds committed Nov 6, 2008
1 parent 47a376b commit 8edec13
Show file tree
Hide file tree
Showing 2 changed files with 14 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: a993b542bb4cd3e5a64863b7ef892bbebec2239b
refs/heads/master: 068f5ae05c51d2cee6b31cb3da06775dd83bd348
18 changes: 13 additions & 5 deletions trunk/fs/fat/namei_vfat.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ static struct dentry *vfat_lookup(struct inode *dir, struct dentry *dentry,
{
struct super_block *sb = dir->i_sb;
struct fat_slot_info sinfo;
struct inode *inode = NULL;
struct inode *inode;
struct dentry *alias;
int err, table;

Expand All @@ -693,14 +693,18 @@ static struct dentry *vfat_lookup(struct inode *dir, struct dentry *dentry,

err = vfat_find(dir, &dentry->d_name, &sinfo);
if (err) {
table++;
if (err == -ENOENT) {
table++;
inode = NULL;
goto out;
}
goto error;
}
inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
brelse(sinfo.bh);
if (IS_ERR(inode)) {
unlock_super(sb);
return ERR_CAST(inode);
err = PTR_ERR(inode);
goto error;
}
alias = d_find_alias(inode);
if (alias) {
Expand All @@ -713,7 +717,7 @@ static struct dentry *vfat_lookup(struct inode *dir, struct dentry *dentry,
}

}
error:
out:
unlock_super(sb);
dentry->d_op = &vfat_dentry_ops[table];
dentry->d_time = dentry->d_parent->d_inode->i_version;
Expand All @@ -723,6 +727,10 @@ static struct dentry *vfat_lookup(struct inode *dir, struct dentry *dentry,
dentry->d_time = dentry->d_parent->d_inode->i_version;
}
return dentry;

error:
unlock_super(sb);
return ERR_PTR(err);
}

static int vfat_create(struct inode *dir, struct dentry *dentry, int mode,
Expand Down

0 comments on commit 8edec13

Please sign in to comment.