lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 28 Mar 2013 09:05:35 +0900
From:	Namjae Jeon <linkinjeon@...il.com>
To:	Alexandru Gheorghiu <gheorghiuandru@...il.com>
Cc:	Jaegeuk Kim <jaegeuk.kim@...sung.com>,
	linux-f2fs-devel@...ts.sourceforge.net,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] fs: f2fs: Use kmemdup

2013/3/28, Alexandru Gheorghiu <gheorghiuandru@...il.com>:
> Used kmemdup instead of kzalloc and memcpy.
>
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@...il.com>
> ---
>  fs/f2fs/node.c    |   11 ++++-------
>  fs/f2fs/segment.c |    3 +--
>  2 files changed, 5 insertions(+), 9 deletions(-)
>
> diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
> index e275218..920f53a 100644
> --- a/fs/f2fs/node.c
> +++ b/fs/f2fs/node.c
> @@ -1661,19 +1661,16 @@ static int init_node_manager(struct f2fs_sb_info
> *sbi)
>  	spin_lock_init(&nm_i->free_nid_list_lock);
>  	rwlock_init(&nm_i->nat_tree_lock);
>
> -	nm_i->bitmap_size = __bitmap_size(sbi, NAT_BITMAP);
>  	nm_i->init_scan_nid = le32_to_cpu(sbi->ckpt->next_free_nid);
>  	nm_i->next_scan_nid = le32_to_cpu(sbi->ckpt->next_free_nid);
> -
> -	nm_i->nat_bitmap = kzalloc(nm_i->bitmap_size, GFP_KERNEL);
> -	if (!nm_i->nat_bitmap)
> -		return -ENOMEM;
> +	nm_i->bitmap_size = __bitmap_size(sbi, NAT_BITMAP);
>  	version_bitmap = __bitmap_ptr(sbi, NAT_BITMAP);
>  	if (!version_bitmap)
>  		return -EFAULT;
>
> -	/* copy version bitmap */
> -	memcpy(nm_i->nat_bitmap, version_bitmap, nm_i->bitmap_size);
> +	nm_i->nat_bitmap = kmemdup(version_bitmap, nm_i->bitmap_size,
> GFP_KERNEL);
maybe, this line is over 80 characters.
plz fix it after running checkpatch.pl.
Thanks.

> +	if (!nm_i->nat_bitmap)
> +		return -ENOMEM;
>  	return 0;
>  }
>
> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
> index 777f17e..1758149 100644
> --- a/fs/f2fs/segment.c
> +++ b/fs/f2fs/segment.c
> @@ -1403,10 +1403,9 @@ static int build_sit_info(struct f2fs_sb_info *sbi)
>  	bitmap_size = __bitmap_size(sbi, SIT_BITMAP);
>  	src_bitmap = __bitmap_ptr(sbi, SIT_BITMAP);
>
> -	dst_bitmap = kzalloc(bitmap_size, GFP_KERNEL);
> +	dst_bitmap = kmemdup(src_bitmap, bitmap_size, GFP_KERNEL);
>  	if (!dst_bitmap)
>  		return -ENOMEM;
> -	memcpy(dst_bitmap, src_bitmap, bitmap_size);
>
>  	/* init SIT information */
>  	sit_i->s_ops = &default_salloc_ops;
> --
> 1.7.9.5
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ