From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtifC-0005H7-Ao for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:45:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ttif8-00045u-Si for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:45:06 -0500 Received: from mail-ie0-f173.google.com ([209.85.223.173]:39727) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ttif8-00045V-O6 for qemu-devel@nongnu.org; Fri, 11 Jan 2013 12:45:02 -0500 Received: by mail-ie0-f173.google.com with SMTP id e13so2643861iej.32 for ; Fri, 11 Jan 2013 09:45:02 -0800 (PST) Sender: fluxion Date: Fri, 11 Jan 2013 11:41:56 -0600 From: mdroth Message-ID: <20130111174156.GI1543@vm> References: <1357899902-5316-1-git-send-email-armbru@redhat.com> <1357899902-5316-3-git-send-email-armbru@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1357899902-5316-3-git-send-email-armbru@redhat.com> Subject: Re: [Qemu-devel] [PATCH 2/6] qemu-ga: Drop pointless lseek() from ga_open_pidfile() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Markus Armbruster Cc: qemu-devel@nongnu.org, lcapitulino@redhat.com On Fri, Jan 11, 2013 at 11:24:58AM +0100, Markus Armbruster wrote: > After open(), the file offset is already zero, and neither lockf() nor > ftruncate() change it. > > Signed-off-by: Markus Armbruster Reviewed-by: Michael Roth > --- > qga/main.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/qga/main.c b/qga/main.c > index 47a6bea..1a22d8d 100644 > --- a/qga/main.c > +++ b/qga/main.c > @@ -276,7 +276,7 @@ static bool ga_open_pidfile(const char *pidfile) > return false; > } > > - if (ftruncate(pidfd, 0) || lseek(pidfd, 0, SEEK_SET)) { > + if (ftruncate(pidfd, 0)) { > g_critical("Failed to truncate pid file"); > goto fail; > } > -- > 1.7.11.7 >