From: Peter Maydell Date: Thu, 27 Jul 2023 15:07:05 +0000 (+0100) Subject: block/iscsi: Document why we use raw malloc() X-Git-Tag: v8.2.0-rc0~133^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7966a36c83132c5eebf04a60d9e475b0aa6e7f88;p=thirdparty%2Fqemu.git block/iscsi: Document why we use raw malloc() In block/iscsi.c we use a raw malloc() call, which is unusual given the project standard is to use the glib memory allocation functions. Document why we do so, to avoid it being converted to g_malloc() by mistake. Signed-off-by: Peter Maydell Message-ID: <20230727150705.2664464-1-peter.maydell@linaro.org> Reviewed-by: Kevin Wolf Signed-off-by: Kevin Wolf --- diff --git a/block/iscsi.c b/block/iscsi.c index 34f97ab6460..5640c8b5657 100644 --- a/block/iscsi.c +++ b/block/iscsi.c @@ -1058,6 +1058,7 @@ static BlockAIOCB *iscsi_aio_ioctl(BlockDriverState *bs, return NULL; } + /* Must use malloc(): this is freed via scsi_free_scsi_task() */ acb->task = malloc(sizeof(struct scsi_task)); if (acb->task == NULL) { error_report("iSCSI: Failed to allocate task for scsi command. %s",