merge(3p/git): Merge git subtree at v2.29.2
This also bumps the stable nixpkgs to 20.09 as of 2020-11-21, because there is some breakage in the git build related to the netrc credentials helper which someone has taken care of in nixpkgs. The stable channel is not used for anything other than git, so this should be fine. Change-Id: I3575a19dab09e1e9556cf8231d717de9890484fb
This commit is contained in:
parent
082c006c04
commit
f4609b896f
1485 changed files with 241535 additions and 109418 deletions
24
third_party/git/refs/packed-backend.c
vendored
24
third_party/git/refs/packed-backend.c
vendored
|
|
@ -200,6 +200,7 @@ struct ref_store *packed_ref_store_create(const char *path,
|
|||
struct ref_store *ref_store = (struct ref_store *)refs;
|
||||
|
||||
base_ref_store_init(ref_store, &refs_be_packed);
|
||||
ref_store->gitdir = xstrdup(path);
|
||||
refs->store_flags = store_flags;
|
||||
|
||||
refs->path = xstrdup(path);
|
||||
|
|
@ -1012,14 +1013,23 @@ int packed_refs_lock(struct ref_store *ref_store, int flags, struct strbuf *err)
|
|||
}
|
||||
|
||||
/*
|
||||
* Now that we hold the `packed-refs` lock, make sure that our
|
||||
* snapshot matches the current version of the file. Normally
|
||||
* `get_snapshot()` does that for us, but that function
|
||||
* assumes that when the file is locked, any existing snapshot
|
||||
* is still valid. We've just locked the file, but it might
|
||||
* have changed the moment *before* we locked it.
|
||||
* There is a stat-validity problem might cause `update-ref -d`
|
||||
* lost the newly commit of a ref, because a new `packed-refs`
|
||||
* file might has the same on-disk file attributes such as
|
||||
* timestamp, file size and inode value, but has a changed
|
||||
* ref value.
|
||||
*
|
||||
* This could happen with a very small chance when
|
||||
* `update-ref -d` is called and at the same time another
|
||||
* `pack-refs --all` process is running.
|
||||
*
|
||||
* Now that we hold the `packed-refs` lock, it is important
|
||||
* to make sure we could read the latest version of
|
||||
* `packed-refs` file no matter we have just mmap it or not.
|
||||
* So what need to do is clear the snapshot if we hold it
|
||||
* already.
|
||||
*/
|
||||
validate_snapshot(refs);
|
||||
clear_snapshot(refs);
|
||||
|
||||
/*
|
||||
* Now make sure that the packed-refs file as it exists in the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue