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
This commit is contained in:
Bart Van Assche
2019-12-23 18:56:47 +00:00
parent 5ca9d97b65
commit 105ac34449
+2 -2
View File
@@ -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,