From: Tejun Heo <[email protected]> There is a subtle bug in sysfs_create_link() failure path. When symlink creation fails because there's already a node with the same name, the target sysfs_dirent is put twice - once by failure path of sysfs_create_link() and once more when the symlink is released. Fix it by making only the symlink node responsible for putting target_sd. Signed-off-by: Tejun Heo <[email protected]> Cc: Gabriel C <[email protected]> Cc: Miles Lane <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- fs/sysfs/symlink.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c index 2f86e04..d056e96 100644 --- a/fs/sysfs/symlink.c +++ b/fs/sysfs/symlink.c @@ -86,7 +86,9 @@ int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK); if (!sd) goto out_put; + sd->s_elem.symlink.target_sd = target_sd; + target_sd = NULL; /* reference is now owned by the symlink */ sysfs_addrm_start(&acxt, parent_sd); -- 1.5.2.2 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- [PATCH 14/14] sysfs: cosmetic clean up on node creation failure paths
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 14/14] sysfs: cosmetic clean up on node creation failure paths
- References:
- [GIT PATCH] more sysfs and driver core patches for 2.6.22
- From: Greg KH <[email protected]>
- [PATCH 01/14] debugfs: remove rmdir() non-empty complaint
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 02/14] Driver core: accept all valid action-strings in uevent-trigger
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 03/14] PM: Remove deprecated sysfs files
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 04/14] PM: remove deprecated dpm_runtime_* routines
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 05/14] sysfs: avoid kmem_cache_free(NULL)
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 06/14] Documentation fix devres.txt: lib/iomap.c -> lib/devres.c
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 07/14] sysfs: fix sysfs root inode nlink accounting
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 08/14] sysfs: make sysfs_init_inode() static
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 09/14] dev_vdbg(), available with -DVERBOSE_DEBUG
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 10/14] dev_vdbg() documentation
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 11/14] HOWTO: Add the knwon_regression URI to the documentation
- From: Greg Kroah-Hartman <[email protected]>
- [PATCH 12/14] Driver core: check return code of sysfs_create_link()
- From: Greg Kroah-Hartman <[email protected]>
- [GIT PATCH] more sysfs and driver core patches for 2.6.22
- Prev by Date: [PATCH 12/14] Driver core: check return code of sysfs_create_link()
- Next by Date: [PATCH 1/5] HOWTO: add Japanese translation of Documentation/HOWTO
- Previous by thread: [PATCH 12/14] Driver core: check return code of sysfs_create_link()
- Next by thread: [PATCH 14/14] sysfs: cosmetic clean up on node creation failure paths
- Index(es):