From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqXU4-0000ms-ST for qemu-devel@nongnu.org; Thu, 26 Jan 2012 17:07:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqXU3-00007Y-UX for qemu-devel@nongnu.org; Thu, 26 Jan 2012 17:07:56 -0500 From: Laszlo Ersek Date: Thu, 26 Jan 2012 22:36:41 +0100 Message-Id: <1327613801-5828-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH] keep the PID file locked for the lifetime of the process List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org The lockf() call in qemu_create_pidfile() aims at ensuring mutual exclusion. We shouldn't close the pidfile on success, because that drops the lock as well [1]: "File locks shall be released on first close by the locking process of any file descriptor for the file." Coverity may complain again about the leaked file descriptor; let's worry about that later. [1] http://pubs.opengroup.org/onlinepubs/9699919799/functions/lockf.html Signed-off-by: Laszlo Ersek --- Please keep me CC'd, I'm not subscribed. Thanks! os-posix.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/os-posix.c b/os-posix.c index 5c437ca..f4940c8 100644 --- a/os-posix.c +++ b/os-posix.c @@ -348,6 +348,5 @@ int qemu_create_pidfile(const char *filename) return -1; } - close(fd); return 0; } -- 1.7.1