scst_vdisk: Rename vdisk_alloc_kvec() into vdisk_alloc_async_kvec()

This patch does not change any functionality.


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@9195 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2020-11-27 03:24:50 +00:00
parent f3fc455a04
commit e3e4c954b2
+2 -2
View File
@@ -3162,7 +3162,7 @@ static bool do_fileio_async(const struct vdisk_cmd_params *p)
}
}
static bool vdisk_alloc_kvec(struct scst_cmd *cmd, struct vdisk_cmd_params *p)
static bool vdisk_alloc_async_kvec(struct scst_cmd *cmd, struct vdisk_cmd_params *p)
{
int n;
@@ -3239,7 +3239,7 @@ static enum compl_status_e fileio_exec_async(struct vdisk_cmd_params *p)
return CMD_FAILED;
}
if (!vdisk_alloc_kvec(cmd, p)) {
if (!vdisk_alloc_async_kvec(cmd, p)) {
scst_set_busy(cmd);
return CMD_SUCCEEDED;
}