qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] bs->enable_write_cache and the guest ABI


From: Avi Kivity
Subject: [Qemu-devel] bs->enable_write_cache and the guest ABI
Date: Sun, 07 Mar 2010 16:42:18 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.8) Gecko/20100301 Fedora/3.0.3-1.fc12 Thunderbird/3.0.3

block.c says:

    /*
     * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
     * write cache to the guest.  We do need the fdatasync to flush
     * out transactions for block allocations, and we maybe have a
     * volatile write cache in our backing device to deal with.
     */
    if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
        bs->enable_write_cache = 1;

This means that if I start a guest with cache=writethrough and then restart (or live migrate) it with cache=none, then the guest will see a change, even though the user only changed the drive's backing, not something guest visible. In the case of live migration, the guest will not even notice the change and we may be at risk of data loss.

For 0.13 I propose setting enable_write_cache to true unconditionally. For 0.12 the question is more difficult, since we'll be changing the guest ABI. Given that guests are unlikely not to be able to cope with write caches, and that the alternative is data loss, I believe that's also the right solution there.

--
error compiling committee.c: too many arguments to function





reply via email to

[Prev in Thread] Current Thread [Next in Thread]