qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] question about qemu disk cache mode


From: Kevin Wolf
Subject: Re: [Qemu-devel] question about qemu disk cache mode
Date: Wed, 4 Sep 2013 10:00:40 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

Am 04.09.2013 um 05:47 hat xuanmao_001 geschrieben:
> Dear qemuers:
>  
> my qemu-kvm version is 1.0.1
> I would like to figure out the qemu disk cache mode. I have visited the
> qemu-options.hx
> there is two cache that I didn't understand: the host cache page and the qemu
> disk write cache.
>  
> Is "host page cache" only used for read. and "qemu disk write cache" used for
> writing.
>  
> which cache the data reached first? host page cache or qemu disk write cache?

You're probably misunderstanding the latter, I assume that what you've
read about is the "disk cache", not a "qemu disk cache". This is the
cache on your hardware, the physical hard disk. The host page cache is
the caching that the Linux kernel does for every file (unless it's
bypassed with O_DIRECT, with is exposed as cache=none/directsync in
qemu). None of this is implemented in or specific to qemu.

When you write data, it reaches the page cache in the kernel first (if
it is used at all), and then the cache on the hard disk.

Hope this helps.

Kevin



reply via email to

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