From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junio C Hamano Subject: Re: [PATCH 2/8] Add a lockfile function to append to a file Date: Thu, 17 Apr 2008 16:51:39 -0700 Message-ID: <7vy77ckpkk.fsf@gitster.siamese.dyndns.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: git@vger.kernel.org, Johannes Schindelin To: Daniel Barkalow X-From: git-owner@vger.kernel.org Fri Apr 18 01:52:43 2008 connect(): Connection refused Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1JmduD-0000K6-NX for gcvg-git-2@gmane.org; Fri, 18 Apr 2008 01:52:42 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755428AbYDQXvy (ORCPT ); Thu, 17 Apr 2008 19:51:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755421AbYDQXvy (ORCPT ); Thu, 17 Apr 2008 19:51:54 -0400 Received: from a-sasl-fastnet.sasl.smtp.pobox.com ([207.106.133.19]:51299 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755166AbYDQXvy (ORCPT ); Thu, 17 Apr 2008 19:51:54 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id 73D262618; Thu, 17 Apr 2008 19:51:52 -0400 (EDT) Received: from pobox.com (ip68-225-240-77.oc.oc.cox.net [68.225.240.77]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id A6D06260B; Thu, 17 Apr 2008 19:51:47 -0400 (EDT) In-Reply-To: (Daniel Barkalow's message of "Thu, 17 Apr 2008 19:32:26 -0400 (EDT)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Daniel Barkalow writes: > +int hold_lock_file_for_append(struct lock_file *lk, const char *path, int die_on_error) > +{ > + int fd = lock_file(lk, path); > + struct stat st; > + if (!stat(path, &st)) { > + int orig_fd = open(path, O_RDONLY); > + size_t mmap_size = xsize_t(st.st_size); > + void *mmap = xmmap(NULL, mmap_size, PROT_READ, MAP_PRIVATE, > + orig_fd, 0); > + write_or_die(fd, mmap, mmap_size); > + munmap(mmap, mmap_size); > + } > + if (fd < 0 && die_on_error) > + die("unable to create '%s.lock': %s", path, strerror(errno)); > + return fd; > +} Another glitch. What should we do when stat(path) fails but the file cannot be read? I think the sequence actually should be: fd = lock_file(); if (fd < 0) error out; orig_fd = open(path, O_RDONLY); if (orig_fd < 0) { if (errno != ENOENT) die("unable to open %s", path); copy; } return fd;