Displaying 1 result from an estimated 1 matches for "use_ioemu".
2012 May 23
0
A little confusion between "tapdisk" and "tapdisk-ioemu"
...se the passage above give me the out of date information?
====================================================
I then look at the "tools/blktap/drivers/blktapctrl.c" file, I find that
the code piece:
if (!strncmp(path, "tapdisk:", strlen("tapdisk:"))) {
*use_ioemu = 0;
path += strlen("tapdisk:");
} else if (!strncmp(path, "ioemu:", strlen("ioemu:"))) {
*use_ioemu = 1;
path += strlen("ioemu:");
} else {
// Use the default for the image type
*use_ioemu = -1;
}
so whe...