From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wstsj-000524-UD for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:08:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WstsZ-00044n-VJ for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:08:29 -0400 Received: from mail-wg0-x231.google.com ([2a00:1450:400c:c00::231]:60584) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WstsZ-00044b-Od for qemu-devel@nongnu.org; Fri, 06 Jun 2014 09:08:19 -0400 Received: by mail-wg0-f49.google.com with SMTP id m15so2740777wgh.8 for ; Fri, 06 Jun 2014 06:08:19 -0700 (PDT) Date: Fri, 6 Jun 2014 15:08:16 +0200 From: Stefan Hajnoczi Message-ID: <20140606130816.GD14322@stefanha-thinkpad> References: <1402019610-2985-1-git-send-email-famz@redhat.com> <1402019610-2985-2-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1402019610-2985-2-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 1/9] virtio-blk: Move VirtIOBlockReq to header List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: Kevin Wolf , Paolo Bonzini , qemu-devel@nongnu.org, Stefan Hajnoczi On Fri, Jun 06, 2014 at 09:53:22AM +0800, Fam Zheng wrote: > diff --git a/include/hw/virtio/virtio-blk.h b/include/hw/virtio/virtio-blk.h > index 4bc9b54..6fc43f1 100644 > --- a/include/hw/virtio/virtio-blk.h > +++ b/include/hw/virtio/virtio-blk.h > @@ -17,6 +17,7 @@ > #include "hw/virtio/virtio.h" > #include "hw/block/block.h" > #include "sysemu/iothread.h" > +#include "include/block/block.h" Why not #include "block/block.h"? The other includes don't explicitly use the include/ prefix either.