Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61463
b: refs/heads/master
c: 01da242
h: refs/heads/master
i:
  61461: 04268c5
  61459: 629f9d0
  61455: 1a5c716
v: v3
  • Loading branch information
Akinobu Mita authored and Greg Kroah-Hartman committed Jul 18, 2007
1 parent c5ff6a3 commit 2cd0979
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 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: 3f8df781fc5f9ee5253a54ba669e1c8872844b86
refs/heads/master: 01da2425f327d7ac673e594bee5655523115970b
13 changes: 7 additions & 6 deletions trunk/fs/sysfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,20 +361,20 @@ static struct dentry_operations sysfs_dentry_ops = {
struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
{
char *dup_name = NULL;
struct sysfs_dirent *sd = NULL;
struct sysfs_dirent *sd;

if (type & SYSFS_COPY_NAME) {
name = dup_name = kstrdup(name, GFP_KERNEL);
if (!name)
goto err_out;
return NULL;
}

sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
if (!sd)
goto err_out;
goto err_out1;

if (sysfs_alloc_ino(&sd->s_ino))
goto err_out;
goto err_out2;

atomic_set(&sd->s_count, 1);
atomic_set(&sd->s_active, 0);
Expand All @@ -386,9 +386,10 @@ struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)

return sd;

err_out:
kfree(dup_name);
err_out2:
kmem_cache_free(sysfs_dir_cachep, sd);
err_out1:
kfree(dup_name);
return NULL;
}

Expand Down

0 comments on commit 2cd0979

Please sign in to comment.