[PATCH v2 06/14] lockfile.c: make hold_lock_file_for_append preserve meaningful errno

2014-06-16 Thread Ronnie Sahlberg
Update hold_lock_file_for_append and copy_fd to return a meaningful errno on failure. Signed-off-by: Ronnie Sahlberg --- copy.c | 20 +--- lockfile.c | 7 ++- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/copy.c b/copy.c index a7f58fd..5cb8679 100644

[PATCH v2 09/14] refs.c: only write reflog update if msg is non-NULL

2014-06-16 Thread Ronnie Sahlberg
When performing a reflog transaction update, only write to the reflog iff msg is non-NULL. This can then be combined with REFLOG_TRUNCATE to perform an update that only truncates but does not write. Signed-off-by: Ronnie Sahlberg --- refs.c | 5 +++-- refs.h | 1 + 2 files changed, 4 insertions

[PATCH v2 14/14] refs.c: remove lock_any_ref_for_update

2014-06-16 Thread Ronnie Sahlberg
No one is using this function so we can delete it. Signed-off-by: Ronnie Sahlberg --- refs.c | 7 --- refs.h | 10 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/refs.c b/refs.c index 3f16445..a2c3630 100644 --- a/refs.c +++ b/refs.c @@ -2207,13 +2207,6 @@ static

[PATCH v2 12/14] refs.c: rename log_ref_setup to create_reflog

2014-06-16 Thread Ronnie Sahlberg
o see that the log already exists instead of performing, for every single update, open(O_CREAT)+lstat()+close(). Signed-off-by: Ronnie Sahlberg --- builtin/checkout.c | 8 +- refs.c | 78 ++ refs.h | 8 +++--- 3 fil

[PATCH v2 07/14] refs.c: add a transaction function to append a reflog entry

2014-06-16 Thread Ronnie Sahlberg
Define a new transaction update type, UPDATE_LOG, and a new function transaction_update_reflog. This function will lock the reflog and append an entry to it during transaction commit. Signed-off-by: Ronnie Sahlberg --- refs.c | 101

[PATCH v2 01/14] refs.c make ref_transaction_create a wrapper to ref_transaction_update

2014-06-16 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- refs.c | 13 ++--- refs.h | 7 --- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/refs.c b/refs.c index fbb34c0..c62df4c 100644 --- a/refs.c +++ b/refs.c @@ -3509,23 +3509,14 @@ int ref_transaction_create(struct ref_transaction

[PATCH v2 11/14] reflog.c: use a reflog transaction when writing during expire

2014-06-16 Thread Ronnie Sahlberg
Use a transaction for all updates during expire_reflog. Signed-off-by: Ronnie Sahlberg --- builtin/reflog.c | 85 refs.c | 4 +-- refs.h | 2 +- 3 files changed, 39 insertions(+), 52 deletions(-) diff --git a

[PATCH v2 13/14] refs.c: make unlock_ref/close_ref/commit_ref static

2014-06-16 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- refs.c | 24 refs.h | 9 - 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/refs.c b/refs.c index f579d63..3f16445 100644 --- a/refs.c +++ b/refs.c @@ -1962,6 +1962,16 @@ int refname_match(const char

[PATCH v2 04/14] refs.c: add a new update_type field to ref_update

2014-06-16 Thread Ronnie Sahlberg
Add a field that describes what type of update this refers to. For now the only type is UPDATE_SHA1 but we will soon add more types. Signed-off-by: Ronnie Sahlberg --- refs.c | 25 + 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/refs.c b/refs.c index

[PATCH v2 03/14] refs.c: rename the transaction functions

2014-06-16 Thread Ronnie Sahlberg
Rename the transaction functions. Remove the leading ref_ from the names and append _sha1 to the names for functions that create/delete/ update sha1 refs. Signed-off-by: Ronnie Sahlberg --- branch.c | 11 +++ builtin/commit.c | 14 - builtin/fetch.c| 12

[PATCH v2 00/14] ref-transactions-reflog

2014-06-16 Thread Ronnie Sahlberg
where we read and parse the entries (the two interators). This is version 2 of the series and is mainly rebased and tweaked to apply ontop of origin/pu and all the changes/conflicts between it and the previous base. Ronnie Sahlberg (14): refs.c make ref_transaction_create a wrapper to

[PATCH v17 04/48] refs.c: allow passing NULL to ref_transaction_free

2014-06-16 Thread Ronnie Sahlberg
rolled back already. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/refs.c b/refs.c index a767ef6..0faed29 100644 --- a/refs.c +++ b/refs.c @@ -3312,6 +3312,9 @@ void ref_transaction_free(struct ref_transaction *transac

[PATCH v17 42/48] refs.c: pass NULL as *flags to read_ref_full

2014-06-16 Thread Ronnie Sahlberg
We call read_ref_full with a pointer to flags from rename_ref but since we never actually use the returned flags we can just pass NULL here instead. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refs.c

[PATCH v17 29/48] fast-import.c: change update_branch to use ref transactions

2014-06-16 Thread Ronnie Sahlberg
Change update_branch() to use ref transactions for updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- fast-import.c | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/fast-import.c b/fast-import.c index fb4738d..0752f0a 100644

[PATCH v17 37/48] refs.c: remove the update_ref_write function

2014-06-16 Thread Ronnie Sahlberg
to start returning more detailed error conditions than the current simple success/failure. For example if the commit failed due to name conflicts etc. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 35 +-- 1 file changed, 9 insertions

[PATCH v17 27/48] commit.c: use ref transactions for updates

2014-06-16 Thread Ronnie Sahlberg
Change commit.c to use ref transactions for all ref updates. Make sure we pass a NULL pointer to ref_transaction_update if have_old is false. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/commit.c | 24 +++- 1 file changed, 11 insertions(+), 13

[PATCH v17 47/48] fetch.c: change s_update_ref to use a ref transaction

2014-06-16 Thread Ronnie Sahlberg
Change s_update_ref to use a ref transaction for the ref update. Signed-off-by: Ronnie Sahlberg --- builtin/fetch.c | 33 +++-- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/builtin/fetch.c b/builtin/fetch.c index faa1233..52f1ebc 100644 --- a

[PATCH v17 41/48] refs.c: pass the ref log message to _create/delete/update instead of _commit

2014-06-16 Thread Ronnie Sahlberg
Change the reference transactions so that we pass the reflog message through to the create/delete/update function instead of the commit message. This allows for individual messages for each change in a multi ref transaction. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg

[PATCH v17 44/48] refs.c: call lock_ref_sha1_basic directly from commit

2014-06-16 Thread Ronnie Sahlberg
Skip using the lock_any_ref_for_update wrapper and call lock_ref_sha1_basic directly from the commit function. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/refs.c b/refs.c index 69815d9

[PATCH v17 39/48] refs.c: make prune_ref use a transaction to delete the ref

2014-06-16 Thread Ronnie Sahlberg
Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 28 +--- refs.h | 14 -- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/refs.c b/refs.c index 6c3e34c..94fda74 100644 --- a/refs.c +++ b/refs.c @@ -30,6 +30,12 @@ static inline int

[PATCH v17 36/48] refs.c: remove the update_ref_lock function

2014-06-16 Thread Ronnie Sahlberg
Since we now only call update_ref_lock with onerr==QUIET_ON_ERR we no longer need this function and can replace it with just calling lock_any_ref_for_update directly. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 30 ++ 1 file changed, 6

[PATCH v17 26/48] replace.c: use the ref transaction functions for updates

2014-06-16 Thread Ronnie Sahlberg
Update replace.c to use ref transactions for updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/replace.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/builtin/replace.c b/builtin/replace.c index b62420a..24f0dc9 100644 --- a

[PATCH v17 46/48] refs.c: propagate any errno==ENOTDIR from _commit back to the callers

2014-06-16 Thread Ronnie Sahlberg
directly. Signed-off-by: Ronnie Sahlberg --- refs.c | 22 +++--- refs.h | 6 ++ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/refs.c b/refs.c index be6b4b6..47575e8 100644 --- a/refs.c +++ b/refs.c @@ -3555,7 +3555,7 @@ static int ref_update_reject_duplicates

[PATCH v17 40/48] refs.c: make delete_ref use a transaction

2014-06-16 Thread Ronnie Sahlberg
. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 34 +- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/refs.c b/refs.c index 94fda74..34383ba 100644 --- a/refs.c +++ b/refs.c @@ -2518,11 +2518,6 @@ static int repack_without_refs

[PATCH v17 38/48] refs.c: remove lock_ref_sha1

2014-06-16 Thread Ronnie Sahlberg
-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 15 +-- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/refs.c b/refs.c index 859f87b..6c3e34c 100644 --- a/refs.c +++ b/refs.c @@ -2143,15 +2143,6 @@ static struct ref_lock *lock_ref_sha1_basic(

[PATCH v17 34/48] walker.c: use ref transaction for ref updates

2014-06-16 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- walker.c | 59 +++ 1 file changed, 35 insertions(+), 24 deletions(-) diff --git a/walker.c b/walker.c index 1dd86b8..60d9f9e 100644 --- a/walker.c +++ b/walker.c @@ -251,39 +251,36 @@ void

[PATCH v17 48/48] refs.c: make write_ref_sha1 static

2014-06-16 Thread Ronnie Sahlberg
No external users call write_ref_sha1 any more so lets declare it static. Signed-off-by: Ronnie Sahlberg --- refs.c | 10 -- refs.h | 3 --- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/refs.c b/refs.c index 47575e8..cb56e38 100644 --- a/refs.c +++ b/refs.c @@ -2639,6

[PATCH v17 35/48] refs.c: make lock_ref_sha1 static

2014-06-16 Thread Ronnie Sahlberg
No external callers reference lock_ref_sha1 any more so lets declare it static. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 2 +- refs.h | 6 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/refs.c b/refs.c index 50e5475..bb12e65 100644 --- a

[PATCH v17 45/48] refs.c: pass a skip list to name_conflict_fn

2014-06-16 Thread Ronnie Sahlberg
will delete m from the packed ref 3, the transaction will create conflicting m/m For this case we want to be able to lock and create m/m since we know that the conflict is only transient. I.e. the conflict will be automatically resolved by the transaction when it deletes m. Signed-off-by: Ronnie

[PATCH v17 43/48] refs.c: move the check for valid refname to lock_ref_sha1_basic

2014-06-16 Thread Ronnie Sahlberg
names. If we need such recovery code we could add it as an option to git fsck and have git fsck be the only sanctioned way of bypassing the normal API and checks. Signed-off-by: Ronnie Sahlberg --- refs.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/refs.c b/refs.c

[PATCH v17 08/48] refs.c: add an err argument to repack_without_refs

2014-06-16 Thread Ronnie Sahlberg
Update repack_without_refs to take an err argument and update it if there is a failure. Pass the err variable from ref_transaction_commit to this function so that callers can print a meaningful error message if _commit fails due to this function. Signed-off-by: Ronnie Sahlberg --- refs.c | 19

[PATCH v17 19/48] refs.c: remove the onerr argument to ref_transaction_commit

2014-06-16 Thread Ronnie Sahlberg
Since all callers now use QUIET_ON_ERR we no longer need to provide an onerr argument any more. Remove the onerr argument from the ref_transaction_commit signature. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 3 +-- refs.c | 22

[PATCH v17 24/48] refs.c: add transaction.status and track OPEN/CLOSED/ERROR

2014-06-16 Thread Ronnie Sahlberg
Track the status of a transaction in a new status field. Check the field for sanity, i.e. that status must be OPEN when _commit/_create/_delete or _update is called or else die(BUG:...) Signed-off-by: Ronnie Sahlberg --- refs.c | 40 +++- 1 file changed, 39

[PATCH v17 10/48] refs.c: verify_lock should set errno to something meaningful

2014-06-16 Thread Ronnie Sahlberg
a directory we wanted to create. Should "git fetch" also look for ENOTEMPTY or EEXIST to catch cases where a directory was in the way of a file to be created? Signed-off-by: Ronnie Sahlberg --- refs.c | 4 refs.h | 6 +- 2 files changed, 9 insertions(+), 1 deletion(-) dif

[PATCH v17 20/48] refs.c: change ref_transaction_update() to do error checking and return status

2014-06-16 Thread Ronnie Sahlberg
the old_sha1 pointer is NULL. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 12 +++- refs.c | 18 -- refs.h | 14 +- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/builtin

[PATCH v17 23/48] refs.c: make ref_transaction_begin take an err argument

2014-06-16 Thread Ronnie Sahlberg
hypothetical MySQL backend could fail in _being with "Can not connect to MySQL server. No route to host". Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 2 +- refs.c | 2 +- refs.h | 2 +- 3 files changed, 3 insertions(+), 3

[PATCH v17 01/48] refs.c: remove ref_transaction_rollback

2014-06-16 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- refs.c | 7 +-- refs.h | 16 +++- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/refs.c b/refs.c index 6898263..48573e3 100644 --- a/refs.c +++ b/refs.c @@ -3308,7 +3308,7 @@ struct ref_transaction *ref_transaction_begin(void

[PATCH v17 11/48] refs.c: make remove_empty_directories alwasy set errno to something sane

2014-06-16 Thread Ronnie Sahlberg
Making errno when returning from remove_empty_directories() more obviously meaningful, which should provide some peace of mind for people auditing lock_ref_sha1_basic. Signed-off-by: Ronnie Sahlberg --- refs.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/refs.c b

[PATCH v17 06/48] lockfile.c: add a new public function unable_to_lock_message

2014-06-16 Thread Ronnie Sahlberg
Introducing a new unable_to_lock_message helper, which has nicer semantics than unable_to_lock_error and cleans up lockfile.c a little. Signed-off-by: Ronnie Sahlberg --- cache.h| 2 ++ lockfile.c | 22 -- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a

[PATCH v17 02/48] refs.c: ref_transaction_commit should not free the transaction

2014-06-16 Thread Ronnie Sahlberg
Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 1 + refs.c | 1 - refs.h | 5 ++--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/builtin/update-ref.c b/builtin/update-ref.c index 405267f..1fd7a89 100644 --- a

[PATCH v17 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging

2014-06-16 Thread Ronnie Sahlberg
finally remove the onerr argument completely. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 2 +- refs.c | 6 +- refs.h | 5 - 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/builtin/update-ref.c b

[PATCH v17 14/48] refs.c: log_ref_write should try to return meaningful errno

2014-06-16 Thread Ronnie Sahlberg
k to detect D/F conflicts Signed-off-by: Ronnie Sahlberg --- refs.c | 29 - 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/refs.c b/refs.c index a4c728c..31ae63e 100644 --- a/refs.c +++ b/refs.c @@ -1951,6 +1951,7 @@ static int remove_empty_dir

[PATCH v17 31/48] refs.c: change update_ref to use a transaction

2014-06-16 Thread Ronnie Sahlberg
Change the update_ref helper function to use a ref transaction internally. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 25 + 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/refs.c b/refs.c index b75523f..50e5475 100644 --- a

[PATCH v17 12/48] refs.c: commit_packed_refs to return a meaningful errno on failure

2014-06-16 Thread Ronnie Sahlberg
pack-refs" and prepares for repack_without_refs() to get a meaningful error message when commit_packed_refs() fails without falling into the same bug. Signed-off-by: Ronnie Sahlberg --- refs.c | 10 +- refs.h | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/r

[PATCH v17 07/48] lockfile.c: make lock_file return a meaningful errno on failurei

2014-06-16 Thread Ronnie Sahlberg
advice based on errno, despite errno potentially being zero and potentially having been clobbered by that point Signed-off-by: Ronnie Sahlberg --- lockfile.c | 17 - refs.c | 1 + refs.h | 1 + 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a

[PATCH v17 28/48] sequencer.c: use ref transactions for all ref updates

2014-06-16 Thread Ronnie Sahlberg
Change to use ref transactions for all updates to refs. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- sequencer.c | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/sequencer.c b/sequencer.c index 0a80c58..fd8acaf 100644 --- a

[PATCH v17 30/48] branch.c: use ref transaction for all ref updates

2014-06-16 Thread Ronnie Sahlberg
up overwriting a branch even if the forcing flag is false. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- branch.c | 30 -- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/branch.c b/branch.c index 660097b..c1eae00 100644 --- a/branch.c

[PATCH v17 22/48] refs.c: update ref_transaction_delete to check for error and return status

2014-06-16 Thread Ronnie Sahlberg
updated on failure. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 5 +++-- refs.c | 16 +++- refs.h | 12 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/builtin/update-ref.c b/builtin

[PATCH v17 17/48] refs.c: make update_ref_write update a strbuf on failure

2014-06-16 Thread Ronnie Sahlberg
Change update_ref_write to also update an error strbuf on failure. This makes the error available to ref_transaction_commit callers if the transaction failed due to update_ref_sha1/write_ref_sha1 failures. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 9 ++--- 1

[PATCH v17 18/48] update-ref: use err argument to get error from ref_transaction_commit

2014-06-16 Thread Ronnie Sahlberg
Call ref_transaction_commit with QUIET_ON_ERR and use the strbuf that is returned to print a log message if/after the transaction fails. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff

[PATCH v17 15/48] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors

2014-06-16 Thread Ronnie Sahlberg
Make ref_update_reject_duplicates return any error that occurs through a new strbuf argument. This means that when a transaction commit fails in this function we will now be able to pass a helpful error message back to the caller. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg

[PATCH v17 21/48] refs.c: change ref_transaction_create to do error checking and return status

2014-06-16 Thread Ronnie Sahlberg
updated on failure. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 4 +++- refs.c | 18 +++-- refs.h | 55 +--- 3 files changed, 63 insertions(+), 14 deletions(-) diff

[PATCH v17 13/48] refs.c: make resolve_ref_unsafe set errno to something meaningful on error

2014-06-16 Thread Ronnie Sahlberg
Making errno when returning from resolve_ref_unsafe() meaningful, which should fix * a bug in lock_ref_sha1_basic, where it assumes EISDIR means it failed due to a directory being in the way Signed-off-by: Ronnie Sahlberg --- cache.h | 2 +- refs.c | 19 +++ 2 files

[PATCH v17 16/48] refs.c: add an err argument to delete_ref_loose

2014-06-16 Thread Ronnie Sahlberg
unlink_or_err that we can call from delete_ref_loose. This function is similar to unlink_or_warn except that we can pass it an err argument. If err is non-NULL the function will populate err instead of printing a warning(). Simplify warn_if_unremovable. Signed-off-by: Ronnie Sahlberg --- refs.c

[PATCH v17 09/48] refs.c: make sure log_ref_setup returns a meaningful errno

2014-06-16 Thread Ronnie Sahlberg
Making errno when returning from log_ref_setup() meaningful, Signed-off-by: Ronnie Sahlberg --- refs.c | 29 - refs.h | 4 +++- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/refs.c b/refs.c index b4b05bd..6f85bd8 100644 --- a/refs.c +++ b/refs.c

[PATCH v17 32/48] receive-pack.c: use a reference transaction for updating the refs

2014-06-16 Thread Ronnie Sahlberg
Wrap all the ref updates inside a transaction. Signed-off-by: Ronnie Sahlberg --- builtin/receive-pack.c | 96 +- 1 file changed, 63 insertions(+), 33 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index c323081

[PATCH v17 00/48] Use ref transactions

2014-06-16 Thread Ronnie Sahlberg
series. If I missed anything I appologize. ... *** BLURB HERE *** Ronnie Sahlberg (48): refs.c: remove ref_transaction_rollback refs.c: ref_transaction_commit should not free the transaction refs.c: constify the sha arguments for ref_transaction_create|delete|update refs.c: allow

[PATCH v17 33/48] fast-import.c: use a ref transaction when dumping tags

2014-06-16 Thread Ronnie Sahlberg
Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- fast-import.c | 29 +++-- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/fast-import.c b/fast-import.c index 0752f0a..42a607d 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1730,15

[PATCH v17 03/48] refs.c: constify the sha arguments for ref_transaction_create|delete|update

2014-06-16 Thread Ronnie Sahlberg
ref_transaction_update() in which case this change is required. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 7 --- refs.h | 7 --- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/refs.c b/refs.c index 33541f4..a767ef6 100644 --- a/refs.c +++ b

[PATCH v17 25/48] tag.c: use ref transactions when doing updates

2014-06-16 Thread Ronnie Sahlberg
Change tag.c to use ref transactions for all ref updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/tag.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/builtin/tag.c b/builtin/tag.c index c6e8a71..c9bfc9a 100644 --- a/builtin

Re: [PATCH v17 16/48] refs.c: add an err argument to delete_ref_loose

2014-06-17 Thread Ronnie Sahlberg
Let me redo it so it applies to current master. On Mon, Jun 16, 2014 at 5:22 PM, Junio C Hamano wrote: > The series applies cleanly up to 25/48 or so to 'master', but this > step already breaks tests, at least t1400 but possibly others. > > Please do not make me bisect X-<. > > Thanks. -- To unsu

[PATCH v18 01/48] refs.c: remove ref_transaction_rollback

2014-06-17 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- refs.c | 7 +-- refs.h | 16 +++- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/refs.c b/refs.c index dc45774..6d841a0 100644 --- a/refs.c +++ b/refs.c @@ -3334,7 +3334,7 @@ struct ref_transaction *ref_transaction_begin(void

[PATCH v18 04/48] refs.c: allow passing NULL to ref_transaction_free

2014-06-17 Thread Ronnie Sahlberg
rolled back already. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/refs.c b/refs.c index 21ed465..1d6dece 100644 --- a/refs.c +++ b/refs.c @@ -3338,6 +3338,9 @@ void ref_transaction_free(struct ref_transaction *transac

[PATCH v18 43/48] refs.c: move the check for valid refname to lock_ref_sha1_basic

2014-06-17 Thread Ronnie Sahlberg
names. If we need such recovery code we could add it as an option to git fsck and have git fsck be the only sanctioned way of bypassing the normal API and checks. Signed-off-by: Ronnie Sahlberg --- refs.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/refs.c b/refs.c

[PATCH v18 02/48] refs.c: ref_transaction_commit should not free the transaction

2014-06-17 Thread Ronnie Sahlberg
Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 1 + refs.c | 1 - refs.h | 5 ++--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/builtin/update-ref.c b/builtin/update-ref.c index 405267f..1fd7a89 100644 --- a

[PATCH v18 07/48] lockfile.c: make lock_file return a meaningful errno on failurei

2014-06-17 Thread Ronnie Sahlberg
advice based on errno, despite errno potentially being zero and potentially having been clobbered by that point Signed-off-by: Ronnie Sahlberg --- lockfile.c | 17 - refs.c | 1 + refs.h | 1 + 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a

[PATCH v18 10/48] refs.c: verify_lock should set errno to something meaningful

2014-06-17 Thread Ronnie Sahlberg
a directory we wanted to create. Should "git fetch" also look for ENOTEMPTY or EEXIST to catch cases where a directory was in the way of a file to be created? Signed-off-by: Ronnie Sahlberg --- refs.c | 4 refs.h | 6 +- 2 files changed, 9 insertions(+), 1 deletion(-) dif

[PATCH v18 45/48] refs.c: pass a skip list to name_conflict_fn

2014-06-17 Thread Ronnie Sahlberg
will delete m from the packed ref 3, the transaction will create conflicting m/m For this case we want to be able to lock and create m/m since we know that the conflict is only transient. I.e. the conflict will be automatically resolved by the transaction when it deletes m. Signed-off-by: Ronnie

[PATCH v18 46/48] refs.c: propagate any errno==ENOTDIR from _commit back to the callers

2014-06-17 Thread Ronnie Sahlberg
directly. Signed-off-by: Ronnie Sahlberg --- refs.c | 22 +++--- refs.h | 6 ++ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/refs.c b/refs.c index 0e29fb4..362ff1b 100644 --- a/refs.c +++ b/refs.c @@ -3580,7 +3580,7 @@ static int ref_update_reject_duplicates

[PATCH v18 48/48] refs.c: make write_ref_sha1 static

2014-06-17 Thread Ronnie Sahlberg
No external users call write_ref_sha1 any more so lets declare it static. Signed-off-by: Ronnie Sahlberg --- refs.c | 10 -- refs.h | 3 --- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/refs.c b/refs.c index 362ff1b..dfbf003 100644 --- a/refs.c +++ b/refs.c @@ -2666,6

[PATCH v18 33/48] fast-import.c: use a ref transaction when dumping tags

2014-06-17 Thread Ronnie Sahlberg
Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- fast-import.c | 29 +++-- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/fast-import.c b/fast-import.c index cd929dc..191fc47 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1734,15

[PATCH v18 42/48] refs.c: pass NULL as *flags to read_ref_full

2014-06-17 Thread Ronnie Sahlberg
We call read_ref_full with a pointer to flags from rename_ref but since we never actually use the returned flags we can just pass NULL here instead. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refs.c

[PATCH v18 25/48] tag.c: use ref transactions when doing updates

2014-06-17 Thread Ronnie Sahlberg
Change tag.c to use ref transactions for all ref updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/tag.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/builtin/tag.c b/builtin/tag.c index c6e8a71..c9bfc9a 100644 --- a/builtin

[PATCH v18 23/48] refs.c: make ref_transaction_begin take an err argument

2014-06-17 Thread Ronnie Sahlberg
hypothetical MySQL backend could fail in _being with "Can not connect to MySQL server. No route to host". Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 2 +- refs.c | 2 +- refs.h | 2 +- 3 files changed, 3 insertions(+), 3

[PATCH v18 44/48] refs.c: call lock_ref_sha1_basic directly from commit

2014-06-17 Thread Ronnie Sahlberg
Skip using the lock_any_ref_for_update wrapper and call lock_ref_sha1_basic directly from the commit function. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/refs.c b/refs.c index 31d41fb

[PATCH v18 41/48] refs.c: pass the ref log message to _create/delete/update instead of _commit

2014-06-17 Thread Ronnie Sahlberg
Change the reference transactions so that we pass the reflog message through to the create/delete/update function instead of the commit message. This allows for individual messages for each change in a multi ref transaction. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg

[PATCH v18 29/48] fast-import.c: change update_branch to use ref transactions

2014-06-17 Thread Ronnie Sahlberg
Change update_branch() to use ref transactions for updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- fast-import.c | 26 +++--- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/fast-import.c b/fast-import.c index 6707a66..cd929dc 100644

[PATCH v18 40/48] refs.c: make delete_ref use a transaction

2014-06-17 Thread Ronnie Sahlberg
. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 34 +- 1 file changed, 13 insertions(+), 21 deletions(-) diff --git a/refs.c b/refs.c index e753711..aa5a74d 100644 --- a/refs.c +++ b/refs.c @@ -2545,11 +2545,6 @@ int repack_without_refs(const

[PATCH v18 37/48] refs.c: remove the update_ref_write function

2014-06-17 Thread Ronnie Sahlberg
to start returning more detailed error conditions than the current simple success/failure. For example if the commit failed due to name conflicts etc. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 35 +-- 1 file changed, 9 insertions

[PATCH v18 24/48] refs.c: add transaction.status and track OPEN/CLOSED/ERROR

2014-06-17 Thread Ronnie Sahlberg
Track the status of a transaction in a new status field. Check the field for sanity, i.e. that status must be OPEN when _commit/_create/_delete or _update is called or else die(BUG:...) Signed-off-by: Ronnie Sahlberg --- refs.c | 40 +++- 1 file changed, 39

[PATCH v18 22/48] refs.c: update ref_transaction_delete to check for error and return status

2014-06-17 Thread Ronnie Sahlberg
updated on failure. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 5 +++-- refs.c | 16 +++- refs.h | 12 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/builtin/update-ref.c b/builtin

[PATCH v18 34/48] walker.c: use ref transaction for ref updates

2014-06-17 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- walker.c | 59 +++ 1 file changed, 35 insertions(+), 24 deletions(-) diff --git a/walker.c b/walker.c index 1dd86b8..60d9f9e 100644 --- a/walker.c +++ b/walker.c @@ -251,39 +251,36 @@ void

[PATCH v18 39/48] refs.c: make prune_ref use a transaction to delete the ref

2014-06-17 Thread Ronnie Sahlberg
Nieder Signed-off-by: Ronnie Sahlberg --- refs.c | 29 + refs.h | 14 -- 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/refs.c b/refs.c index e8118de..e753711 100644 --- a/refs.c +++ b/refs.c @@ -25,6 +25,11 @@ static unsigned char

[PATCH v18 47/48] fetch.c: change s_update_ref to use a ref transaction

2014-06-17 Thread Ronnie Sahlberg
Change s_update_ref to use a ref transaction for the ref update. Signed-off-by: Ronnie Sahlberg --- builtin/fetch.c | 33 +++-- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/builtin/fetch.c b/builtin/fetch.c index faa1233..52f1ebc 100644 --- a

[PATCH v18 26/48] replace.c: use the ref transaction functions for updates

2014-06-17 Thread Ronnie Sahlberg
Update replace.c to use ref transactions for updates. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/replace.c | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/builtin/replace.c b/builtin/replace.c index 1bb491d..054f5ef 100644

Re: [PATCH v17 16/48] refs.c: add an err argument to delete_ref_loose

2014-06-17 Thread Ronnie Sahlberg
Thanks. I have rebased it on current master and re-sent it as v18 I passes all tests, except t0008 which is unrelated to this series. regards ronnie sahlberg On Tue, Jun 17, 2014 at 7:34 AM, Ronnie Sahlberg wrote: > Let me redo it so it applies to current master. > > On Mon, Jun 16

[PATCH v18 27/48] commit.c: use ref transactions for updates

2014-06-17 Thread Ronnie Sahlberg
Change commit.c to use ref transactions for all ref updates. Make sure we pass a NULL pointer to ref_transaction_update if have_old is false. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/commit.c | 24 +++- 1 file changed, 11 insertions(+), 13

[PATCH v18 32/48] receive-pack.c: use a reference transaction for updating the refs

2014-06-17 Thread Ronnie Sahlberg
Wrap all the ref updates inside a transaction. Signed-off-by: Ronnie Sahlberg --- builtin/receive-pack.c | 96 +- 1 file changed, 63 insertions(+), 33 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index c323081

[PATCH v18 14/48] refs.c: log_ref_write should try to return meaningful errno

2014-06-17 Thread Ronnie Sahlberg
k to detect D/F conflicts Signed-off-by: Ronnie Sahlberg --- refs.c | 29 - 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/refs.c b/refs.c index 211429d..1f2eb24 100644 --- a/refs.c +++ b/refs.c @@ -1979,6 +1979,7 @@ static int remove_empty_dir

[PATCH v18 12/48] refs.c: commit_packed_refs to return a meaningful errno on failure

2014-06-17 Thread Ronnie Sahlberg
pack-refs" and prepares for repack_without_refs() to get a meaningful error message when commit_packed_refs() fails without falling into the same bug. Signed-off-by: Ronnie Sahlberg --- refs.c | 10 +- refs.h | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/r

[PATCH v18 28/48] sequencer.c: use ref transactions for all ref updates

2014-06-17 Thread Ronnie Sahlberg
Change to use ref transactions for all updates to refs. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- sequencer.c | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/sequencer.c b/sequencer.c index 0a80c58..fd8acaf 100644 --- a

[PATCH v18 20/48] refs.c: change ref_transaction_update() to do error checking and return status

2014-06-17 Thread Ronnie Sahlberg
the old_sha1 pointer is NULL. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 12 +++- refs.c | 18 -- refs.h | 14 +- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/builtin

[PATCH v18 13/48] refs.c: make resolve_ref_unsafe set errno to something meaningful on error

2014-06-17 Thread Ronnie Sahlberg
Making errno when returning from resolve_ref_unsafe() meaningful, which should fix * a bug in lock_ref_sha1_basic, where it assumes EISDIR means it failed due to a directory being in the way Signed-off-by: Ronnie Sahlberg --- cache.h | 2 +- refs.c | 19 +++ 2 files

[PATCH v18 15/48] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors

2014-06-17 Thread Ronnie Sahlberg
Make ref_update_reject_duplicates return any error that occurs through a new strbuf argument. This means that when a transaction commit fails in this function we will now be able to pass a helpful error message back to the caller. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg

[PATCH v18 09/48] refs.c: make sure log_ref_setup returns a meaningful errno

2014-06-17 Thread Ronnie Sahlberg
Making errno when returning from log_ref_setup() meaningful, Signed-off-by: Ronnie Sahlberg --- refs.c | 27 +++ refs.h | 4 +++- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/refs.c b/refs.c index 67a0217..9ea519c 100644 --- a/refs.c +++ b/refs.c

[PATCH v18 08/48] refs.c: add an err argument to repack_without_refs

2014-06-17 Thread Ronnie Sahlberg
Update repack_without_refs to take an err argument and update it if there is a failure. Pass the err variable from ref_transaction_commit to this function so that callers can print a meaningful error message if _commit fails due to this function. Signed-off-by: Ronnie Sahlberg --- builtin

[PATCH v18 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging

2014-06-17 Thread Ronnie Sahlberg
finally remove the onerr argument completely. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 2 +- refs.c | 6 +- refs.h | 5 - 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/builtin/update-ref.c b

[PATCH v18 16/48] refs.c: add an err argument to delete_ref_loose

2014-06-17 Thread Ronnie Sahlberg
unlink_or_err that we can call from delete_ref_loose. This function is similar to unlink_or_warn except that we can pass it an err argument. If err is non-NULL the function will populate err instead of printing a warning(). Simplify warn_if_unremovable. Signed-off-by: Ronnie Sahlberg --- refs.c

[PATCH v18 06/48] lockfile.c: add a new public function unable_to_lock_message

2014-06-17 Thread Ronnie Sahlberg
Introducing a new unable_to_lock_message helper, which has nicer semantics than unable_to_lock_error and cleans up lockfile.c a little. Signed-off-by: Ronnie Sahlberg --- cache.h| 2 ++ lockfile.c | 22 -- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a

[PATCH v18 19/48] refs.c: remove the onerr argument to ref_transaction_commit

2014-06-17 Thread Ronnie Sahlberg
Since all callers now use QUIET_ON_ERR we no longer need to provide an onerr argument any more. Remove the onerr argument from the ref_transaction_commit signature. Reviewed-by: Jonathan Nieder Signed-off-by: Ronnie Sahlberg --- builtin/update-ref.c | 3 +-- refs.c | 22

<    4   5   6   7   8   9   10   11   >