From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6CXc-00083l-CS for qemu-devel@nongnu.org; Fri, 27 May 2016 03:50:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6CXa-0004Zz-9v for qemu-devel@nongnu.org; Fri, 27 May 2016 03:50:43 -0400 Date: Fri, 27 May 2016 15:50:28 +0800 From: Fam Zheng Message-ID: <20160527075028.GC15113@ad.usersys.redhat.com> References: <1463470536-8981-1-git-send-email-famz@redhat.com> <1463470536-8981-12-git-send-email-famz@redhat.com> <6bc4980e-f6e1-1d10-9be5-07836b0be566@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6bc4980e-f6e1-1d10-9be5-07836b0be566@redhat.com> Subject: Re: [Qemu-devel] [PATCH v5 11/27] raw-posix: Implement .bdrv_lockf List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Max Reitz Cc: qemu-devel@nongnu.org, Kevin Wolf , Jeff Cody , Markus Armbruster , Eric Blake , John Snow , qemu-block@nongnu.org, berrange@redhat.com, pbonzini@redhat.com, den@openvz.org, stefanha@redhat.com On Tue, 05/24 19:09, Max Reitz wrote: > On 17.05.2016 09:35, Fam Zheng wrote: > > virtlockd in libvirt locks the first byte, we lock byte 1 to avoid > > the intervene. > > > > Both file and host device protocols are covered. > > Is there a reason you didn't cover host_cdrom other than it generally > being read-only and thus probably not really needing a lock? That is the reason. > > > Suggested-by: "Daniel P. Berrange" > > I think the quotation marks are superfluous. OK, I can remove them. > > > Signed-off-by: Fam Zheng > > --- > > block/raw-posix.c | 22 ++++++++++++++++++++++ > > 1 file changed, 22 insertions(+) > > > > diff --git a/block/raw-posix.c b/block/raw-posix.c > > index bb8669f..acd3be2 100644 > > --- a/block/raw-posix.c > > +++ b/block/raw-posix.c > > @@ -35,6 +35,7 @@ > > #include "raw-aio.h" > > #include "qapi/util.h" > > #include "qapi/qmp/qstring.h" > > +#include "glib.h" > > What for? It's stale from a previous revision. > > > > > #if defined(__APPLE__) && (__MACH__) > > #include > > @@ -397,6 +398,23 @@ static void raw_attach_aio_context(BlockDriverState *bs, > > #endif > > } > > > > +static int raw_lockf(BlockDriverState *bs, BdrvLockfCmd cmd) > > +{ > > + > > + BDRVRawState *s = bs->opaque; > > + > > + switch (cmd) { > > + case BDRV_LOCKF_EXCLUSIVE: > > + return qemu_lock_fd(s->fd, 1, 1, true); > > + case BDRV_LOCKF_SHARED: > > + return qemu_lock_fd(s->fd, 1, 1, false); > > + case BDRV_LOCKF_UNLOCK: > > + return qemu_unlock_fd(s->fd, 1, 1); > > + default: > > + abort(); > > + } > > I figure the comment from patch 8 about why byte 1 is locked should be > here somewhere. Yes. Thanks, Fam