From: Junio C Hamano <junkio@cox.net>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org, Alex Riesen <fork0@t-online.de>
Subject: Re: [PATCH 1/3] Add read_cache_from() and discard_cache()
Date: Fri, 30 Jun 2006 09:44:16 -0700 [thread overview]
Message-ID: <7v3bdmk2zj.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: <Pine.LNX.4.63.0606301643150.29667@wbgn013.biozentrum.uni-wuerzburg.de> (Johannes Schindelin's message of "Fri, 30 Jun 2006 16:43:29 +0200 (CEST)")
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> +int discard_cache()
> +{
> + int ret;
> +
> + if (cache_mmap == NULL)
> + return 0;
> + ret = munmap(cache_mmap, cache_mmap_size);
> + cache_mmap = NULL;
> + cache_mmap_size = 0;
> + active_nr = active_cache_changed = 0;
> + /* no need to throw away allocated active_cache */
> + return ret;
> +}
> +
I haven't been following the details of the patches in this
thread while they are being cooked actively, but two things to
look out for are:
- I am guessing you run discard_cache() because you want to
read in a new cache (or start from a clean slate). I am not
sure what you are doing with the old cache tree data
structure. If you are starting from a clean slate
(i.e. there is no read_cache_from() after you call
discard_cache), you would probably need to discard the old
cache tree; otherwise your next write-tree may produce an
incorrect index file. If you keep the old one and later
swap it in, the problem might be even more severe.
- index_timestamp is left as the old value in this patch when
you switch cache using read_cache_from() directly. I have a
suspicion you may be bitten by "Racy Git" problem, especially
because the operations are supposed to happen quickly thanks
to the effort of you two ;-) increasing the risks that the
file timestamp of the working tree file and the cached entry
match.
next prev parent reply other threads:[~2006-06-30 16:44 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-30 0:27 [PATCH 4/4] save another call to git-update-index Alex Riesen
2006-06-30 0:37 ` Johannes Schindelin
2006-06-30 7:22 ` Alex Riesen
2006-06-30 9:56 ` Johannes Schindelin
2006-06-30 11:33 ` Alex Riesen
2006-06-30 14:43 ` Johannes Schindelin
2006-06-30 14:43 ` [PATCH 1/3] Add read_cache_from() and discard_cache() Johannes Schindelin
2006-06-30 16:44 ` Junio C Hamano [this message]
2006-07-01 15:06 ` Johannes Schindelin
2006-07-01 18:51 ` Junio C Hamano
2006-07-02 8:51 ` Johannes Schindelin
2006-07-03 21:04 ` Junio C Hamano
2006-07-04 14:18 ` Johannes Schindelin
2006-07-04 17:41 ` Junio C Hamano
2006-06-30 14:43 ` [PATCH 2/3] Make refresh_cache_entry() public Johannes Schindelin
2006-06-30 14:44 ` [PATCH 3/3] merge-recursive: avoid the pipe to update-index Johannes Schindelin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7v3bdmk2zj.fsf@assigned-by-dhcp.cox.net \
--to=junkio@cox.net \
--cc=Johannes.Schindelin@gmx.de \
--cc=fork0@t-online.de \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox