Commit 6ed9b92e authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Linus Torvalds

lib/scatterlist.c: avoid a double memset

'sgl' is zeroed a few lines below in 'sg_init_table()'. There is no need to
clear it twice.

Remove the redundant initialization.
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Link: https://lkml.kernel.org/r/20200920071544.368841-1-christophe.jaillet@wanadoo.frSigned-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3264ceec
...@@ -504,7 +504,7 @@ struct scatterlist *sgl_alloc_order(unsigned long long length, ...@@ -504,7 +504,7 @@ struct scatterlist *sgl_alloc_order(unsigned long long length,
nalloc++; nalloc++;
} }
sgl = kmalloc_array(nalloc, sizeof(struct scatterlist), sgl = kmalloc_array(nalloc, sizeof(struct scatterlist),
(gfp & ~GFP_DMA) | __GFP_ZERO); gfp & ~GFP_DMA);
if (!sgl) if (!sgl)
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment