linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH AUTOSEL 4.14 8/9] nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_group
           [not found] <20210913223535.436405-1-sashal@kernel.org>
           [not found] ` <20210913223535.436405-1-sashal-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    @ 2021-09-13 22:35 ` Sasha Levin
      1 sibling, 0 replies; 6+ messages in thread
    From: Sasha Levin @ 2021-09-13 22:35 UTC (permalink / raw)
      To: linux-kernel, stable
      Cc: Nanyong Sun, Ryusuke Konishi, Andrew Morton, Linus Torvalds,
    	Sasha Levin, linux-nilfs
    
    From: Nanyong Sun <sunnanyong@huawei.com>
    
    [ Upstream commit b2fe39c248f3fa4bbb2a20759b4fdd83504190f7 ]
    
    If kobject_init_and_add returns with error, kobject_put() is needed here
    to avoid memory leak, because kobject_init_and_add may return error
    without freeing the memory associated with the kobject it allocated.
    
    Link: https://lkml.kernel.org/r/20210629022556.3985106-6-sunnanyong@huawei.com
    Link: https://lkml.kernel.org/r/1625651306-10829-6-git-send-email-konishi.ryusuke@gmail.com
    Signed-off-by: Nanyong Sun <sunnanyong@huawei.com>
    Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
     fs/nilfs2/sysfs.c | 4 ++--
     1 file changed, 2 insertions(+), 2 deletions(-)
    
    diff --git a/fs/nilfs2/sysfs.c b/fs/nilfs2/sysfs.c
    index 31eed118d0ce..28f5572c6aae 100644
    --- a/fs/nilfs2/sysfs.c
    +++ b/fs/nilfs2/sysfs.c
    @@ -217,9 +217,9 @@ int nilfs_sysfs_create_snapshot_group(struct nilfs_root *root)
     	}
     
     	if (err)
    -		return err;
    +		kobject_put(&root->snapshot_kobj);
     
    -	return 0;
    +	return err;
     }
     
     void nilfs_sysfs_delete_snapshot_group(struct nilfs_root *root)
    -- 
    2.30.2
    
    
    ^ permalink raw reply related	[flat|nested] 6+ messages in thread

  • end of thread, other threads:[~2021-09-13 22:35 UTC | newest]
    
    Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20210913223535.436405-1-sashal@kernel.org>
         [not found] ` <20210913223535.436405-1-sashal-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
    2021-09-13 22:35   ` [PATCH AUTOSEL 4.14 4/9] nilfs2: fix memory leak in nilfs_sysfs_create_device_group Sasha Levin
    2021-09-13 22:35   ` [PATCH AUTOSEL 4.14 5/9] nilfs2: fix NULL pointer in nilfs_##name##_attr_release Sasha Levin
    2021-09-13 22:35   ` [PATCH AUTOSEL 4.14 6/9] nilfs2: fix memory leak in nilfs_sysfs_create_##name##_group Sasha Levin
    2021-09-13 22:35   ` [PATCH AUTOSEL 4.14 7/9] nilfs2: fix memory leak in nilfs_sysfs_delete_##name##_group Sasha Levin
    2021-09-13 22:35   ` [PATCH AUTOSEL 4.14 9/9] nilfs2: fix memory leak in nilfs_sysfs_delete_snapshot_group Sasha Levin
    2021-09-13 22:35 ` [PATCH AUTOSEL 4.14 8/9] nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_group Sasha Levin
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).