From 105ac34449c422d98f314b0b2c83b82754dbbf8b Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 23 Dec 2019 18:56:47 +0000 Subject: [PATCH] scst_vdisk: Rename vdisk_parse() into fileio_parse() Since this function is only used by the vdisk_fileio handler, reflect this in the function name. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8699 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 d6bd52239..cc8e7c986 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -2718,7 +2718,7 @@ out_err: goto out; } -static int vdisk_parse(struct scst_cmd *cmd) +static int fileio_parse(struct scst_cmd *cmd) { int res, rc; @@ -9909,7 +9909,7 @@ static struct scst_dev_type vdisk_file_devtype = { .detach = vdisk_detach, .attach_tgt = vdisk_attach_tgt, .detach_tgt = vdisk_detach_tgt, - .parse = vdisk_parse, + .parse = fileio_parse, .exec = fileio_exec, .on_free_cmd = fileio_on_free_cmd, .task_mgmt_fn_done = vdisk_task_mgmt_fn_done,