aa2b823c also needed to change ioengine_ops::name size to 64, or make it a pointer to a readonly string which seems to be better in this case as no one is to (or should be able to) modify it. Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@xxxxxxxxx> --- ioengine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioengine.h b/ioengine.h index 0effade..ceed329 100644 --- a/ioengine.h +++ b/ioengine.h @@ -138,7 +138,7 @@ enum { struct ioengine_ops { struct flist_head list; - char name[16]; + const char *name; int version; int flags; int (*setup)(struct thread_data *); -- 2.5.5 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html