From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43330) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsWOu-0007wn-L4 for qemu-devel@nongnu.org; Tue, 08 Jan 2013 05:27:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TsWOt-0001yo-KP for qemu-devel@nongnu.org; Tue, 08 Jan 2013 05:27:20 -0500 Received: from mx1.redhat.com ([209.132.183.28]:7337) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsWOt-0001yi-CA for qemu-devel@nongnu.org; Tue, 08 Jan 2013 05:27:19 -0500 Message-ID: <50EBEE42.7010407@redhat.com> Date: Tue, 08 Jan 2013 11:00:34 +0100 From: Kevin Wolf MIME-Version: 1.0 References: <1355941771-3418-1-git-send-email-namei.unix@gmail.com> <87k3s6shdv.wl%morita.kazutaka@lab.ntt.co.jp> <50D967C3.7020109@gmail.com> <50E58B19.2050701@gmail.com> <20130104163830.GF6310@stefanha-thinkpad.hitronhub.home> <50E7AEC4.5080309@gmail.com> <50E7BA41.3020307@gmail.com> <50E7DC9B.4080309@gmail.com> <50EACC61.2020603@redhat.com> <50EBB1CB.9030608@gmail.com> <20130108094025.GE2557@stefanha-thinkpad.redhat.com> <50EBEAD2.6070608@gmail.com> In-Reply-To: <50EBEAD2.6070608@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] sheepdog: implement direct write semantics List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Liu Yuan Cc: Stefan Hajnoczi , qemu-devel@nongnu.org, MORITA Kazutaka , Paolo Bonzini Am 08.01.2013 10:45, schrieb Liu Yuan: > On 01/08/2013 05:40 PM, Stefan Hajnoczi wrote: >> Otherwise use sheepdog writeback and let QEMU block.c decide when to >> flush. Never use sheepdog writethrough because it's redundant here. > > I don't get it. What do you mean by 'redundant'? If we use virtio & > sheepdog block driver, how can we specify writethrough mode for Sheepdog > cache? Here 'writethrough' means use a pure read cache, which doesn't > need flush at all. A writethrough cache is equivalent to a write-back cache where each write is followed by a flush. qemu makes sure to send these flushes, so there is no need use Sheepdog's writethrough mode. Kevin