mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 00:21:32 +00:00
xen/blkback: use kmem_cache_zalloc instead of kmem_cache_alloc/memset
Using kmem_cache_zalloc() instead of kmem_cache_alloc() and memset(). spatch with a semantic match is used to found this problem. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
This commit is contained in:
parent
dbd4713348
commit
654dbef214
@ -105,11 +105,10 @@ static struct xen_blkif *xen_blkif_alloc(domid_t domid)
|
|||||||
{
|
{
|
||||||
struct xen_blkif *blkif;
|
struct xen_blkif *blkif;
|
||||||
|
|
||||||
blkif = kmem_cache_alloc(xen_blkif_cachep, GFP_KERNEL);
|
blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
|
||||||
if (!blkif)
|
if (!blkif)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
memset(blkif, 0, sizeof(*blkif));
|
|
||||||
blkif->domid = domid;
|
blkif->domid = domid;
|
||||||
spin_lock_init(&blkif->blk_ring_lock);
|
spin_lock_init(&blkif->blk_ring_lock);
|
||||||
atomic_set(&blkif->refcnt, 1);
|
atomic_set(&blkif->refcnt, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user