[RFC 3/3] nvme: wire up support for async passthrough

Chaitanya Kulkarni Chaitanya.Kulkarni at wdc.com
Wed Mar 3 07:34:18 GMT 2021


On 3/2/21 23:22, Kanchan Joshi wrote:
> +	if (!ioucmd)
> +		cptr = &c;
> +	else {
> +		/*for async - allocate cmd dynamically */
> +		cptr = kmalloc(sizeof(struct nvme_command), GFP_KERNEL);
> +		if (!cptr)
> +			return -ENOMEM;
> +	}
> +
> +	memset(cptr, 0, sizeof(c));
Why not kzalloc and remove memset() ?



More information about the Linux-nvme mailing list