aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrakash Surya <[email protected]>2011-11-18 14:27:37 -0800
committerBrian Behlendorf <[email protected]>2011-11-21 16:52:36 -0800
commite05bec805b066e72266281a03e57e61e7dd53264 (patch)
tree83319cde5aaec3b8b03ea04a8d25a89f90a370c4
parent1114ae6ae74a287478cd8a34770fc4a907f84134 (diff)
Fix a typo referencing an incorrect symbol
The splat_taskq_test4_common function was incorrectly referencing the splat_taskq-test13_func symbol, when it meant to be using the splat_taskq_test4_func symbol. Signed-off-by: Brian Behlendorf <[email protected]> Closes #61
-rw-r--r--module/splat/splat-taskq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/splat/splat-taskq.c b/module/splat/splat-taskq.c
index a7c537236..0f74b5ae5 100644
--- a/module/splat/splat-taskq.c
+++ b/module/splat/splat-taskq.c
@@ -344,7 +344,7 @@ splat_taskq_test4_common(struct file *file, void *arg, int minalloc,
splat_vprint(file, SPLAT_TASKQ_TEST4_NAME,
"Taskq '%s' function '%s' dispatch "
"%d failed\n", tq_arg.name,
- sym2str(splat_taskq_test13_func), j);
+ sym2str(splat_taskq_test4_func), j);
rc = -EINVAL;
goto out;
}