From e3e4c954b298ff3c847188acda52b1b24f317ef8 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Fri, 27 Nov 2020 03:24:50 +0000 Subject: [PATCH] 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 --- scst/src/dev_handlers/scst_vdisk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scst/src/dev_handlers/scst_vdisk.c b/scst/src/dev_handlers/scst_vdisk.c index 351c53800..0230ddc4a 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -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; }