Re: [PATCH] scsi: advansys: Replace zero-length array with flexible-array member

From: Matthew Wilcox
Date: Wed Feb 12 2020 - 20:14:19 EST


On Wed, Feb 12, 2020 at 06:02:11PM -0600, Gustavo A. R. Silva wrote:
> Also, notice that, dynamic memory allocations won't be affected by
> this change:

Shouldn't you also convert this:
asc_sg_head = kzalloc(sizeof(asc_scsi_q->sg_head) +
use_sg * sizeof(struct asc_sg_list), GFP_ATOMIC);
to use struct_size()?