[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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 02/14] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-06-16 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg --- refs.c | 17 + refs.h | 2 +- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/refs.c b/refs.c index c62df4c..76732a4 100644 --- a/refs.c +++ b/refs.c @@ -3525,24 +3525,17 @@ int ref_transaction_delete(struct ref_transaction

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

2014-06-16 Thread Ronnie Sahlberg
only a single place where we write a reflog entry to a file instead of the current two places (log_ref_write and builtin/reflog.c). Signed-off-by: Ronnie Sahlberg --- refs.c | 48 ++-- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/refs.c

[PATCH v2 08/14] refs.c: add a flag to allow reflog updates to truncate the log

2014-06-16 Thread Ronnie Sahlberg
Add a flag that allows us to truncate the reflog before we write the update. Signed-off-by: Ronnie Sahlberg --- refs.c | 17 +++-- refs.h | 10 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/refs.c b/refs.c index 9db5896..379b50e 100644 --- a/refs.c +++ b

[PATCH v2 10/14] refs.c: allow multiple reflog updates during a single transaction

2014-06-16 Thread Ronnie Sahlberg
code such as: t = transaction_begin() transaction_reflog_update(t, "foo", REFLOG_TRUNCATE, NULL); loop-over-somehting... transaction_reflog_update(t, "foo", 0, ); transaction_commit(t) where we first truncate the reflog and then build the new content one line at a time. S

Re: [PATCH v4 0/1] receive-pack: optionally deny case clone refs

2014-06-13 Thread Ronnie Sahlberg
On Fri, Jun 13, 2014 at 2:11 PM, Junio C Hamano wrote: > Ronnie Sahlberg writes: > >> ... The first >> backend will be the current files based structure but I also will add >> an optional backend using a TDB database. > > I am assuming that as part of the transactio

Re: [PATCH 1/2] remotes.c: update calls to new signature for repack_without_refs

2014-06-13 Thread Ronnie Sahlberg
, Junio C Hamano wrote: > Ronnie Sahlberg writes: > >> This should be merged into patch: >> 00c74db refs.c: add an err argument to repack_without_refs >> >> Signed-off-by: Ronnie Sahlberg >> --- >> builtin/remote.c | 5 +++-- >> refs.h

Re: [PATCH v4 0/1] receive-pack: optionally deny case clone refs

2014-06-13 Thread Ronnie Sahlberg
s to/from '%xx' representation when accessing the actual files. On Fri, Jun 13, 2014 at 11:20 AM, Ronnie Sahlberg wrote: > On Thu, Jun 12, 2014 at 12:47 PM, Junio C Hamano wrote: >> David Turner writes: >> >>> This issue bit us again recently. >>> &g

Re: [PATCH v4 0/1] receive-pack: optionally deny case clone refs

2014-06-13 Thread Ronnie Sahlberg
On Thu, Jun 12, 2014 at 12:47 PM, Junio C Hamano wrote: > David Turner writes: > >> This issue bit us again recently. >> >> In talking with some colleagues, I realized that the previous version >> of this patch, in addition to being potentially slow, was incomplete. >> Specifically, it didn't han

[PATCH] refs.c: fix delete_ref_loose

2014-06-13 Thread Ronnie Sahlberg
Please use this to fixup the patch: refs.c: add an err argument to delete_ref_loose With this fix and the two previous ones the ref-transactions support in origin/pu passes all tests. Signed-off-by: Ronnie Sahlberg --- wrapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

Re: [PATCH v15 00/48] Use ref transactions

2014-06-13 Thread Ronnie Sahlberg
Looking at it, thanks! I found two issues, I have just sent patches to the list for them. You can just "fixup" these two patches in origin/pu? Or do you want me to re-send the series? regards ronnie sahlberg On Thu, Jun 12, 2014 at 3:15 PM, Junio C Hamano wrote: > Ronnie Sah

[PATCH 1/2] remotes.c: update calls to new signature for repack_without_refs

2014-06-13 Thread Ronnie Sahlberg
This should be merged into patch: 00c74db refs.c: add an err argument to repack_without_refs Signed-off-by: Ronnie Sahlberg --- builtin/remote.c | 5 +++-- refs.h | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/builtin/remote.c b/builtin/remote.c index c9102e8

[PATCH 2/2] receive-pack.c: add missing xstrdup

2014-06-13 Thread Ronnie Sahlberg
This should be merged into patch : 1685d87 receive-pack.c: use a reference transaction for updating the refs Signed-off-by: Ronnie Sahlberg --- builtin/receive-pack.c | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/builtin/receive-pack.c b/builtin

[PATCH 0/2] Fixes for the ref-transactions series in origin/pu

2014-06-13 Thread Ronnie Sahlberg
Jun, Please find two fixes for the ref-transactions series in origin/pu Ronnie Sahlberg (2): remotes.c: update calls to new signature for repack_without_refs receive-pack.c: add missing xstrdup builtin/receive-pack.c | 21 +++-- builtin/remote.c | 5 +++-- refs.h

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

2014-06-12 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 v16 02/48] refs.c: ref_transaction_commit should not free the transaction

2014-06-12 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 v16 08/48] refs.c: add an err argument to repack_without_refs

2014-06-12 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 v16 33/48] fast-import.c: use a ref transaction when dumping tags

2014-06-12 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 4a7b196..587ef4a 100644 --- a/fast-import.c +++ b/fast-import.c @@ -1735,15

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

2014-06-12 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 v16 00/48] Use ref transactions

2014-06-12 Thread Ronnie Sahlberg
. ... 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 passing NULL to ref_transaction_free refs.c: add a strbuf argument

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

2014-06-12 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 4b3705d..cf92e5d 100644 --- a

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

2014-06-12 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 v16 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging

2014-06-12 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 v16 20/48] refs.c: change ref_transaction_update() to do error checking and return status

2014-06-12 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 v16 35/48] refs.c: make lock_ref_sha1 static

2014-06-12 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 30b5db1..8c0f046 100644 --- a

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

2014-06-12 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 v16 19/48] refs.c: remove the onerr argument to ref_transaction_commit

2014-06-12 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 v16 29/48] fast-import.c: change update_branch to use ref transactions

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

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

2014-06-12 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 be618e8

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

2014-06-12 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 b1224f3..8917832 100644 --- a/refs.c +++ b/refs.c @@ -3555,7 +3555,7 @@ static int ref_update_reject_duplicates

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

2014-06-12 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 v16 22/48] refs.c: update ref_transaction_delete to check for error and return status

2014-06-12 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 v16 32/48] receive-pack.c: use a reference transaction for updating the refs

2014-06-12 Thread Ronnie Sahlberg
Wrap all the ref updates inside a transaction. Free commands when we are finished with them instead of leaking. Signed-off-by: Ronnie Sahlberg --- builtin/receive-pack.c | 74 +++--- 1 file changed, 52 insertions(+), 22 deletions(-) diff --git a

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

2014-06-12 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 v16 41/48] refs.c: pass the ref log message to _create/delete/update instead of _commit

2014-06-12 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 v16 34/48] walker.c: use ref transaction for ref updates

2014-06-12 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 v16 27/48] commit.c: use ref transactions for updates

2014-06-12 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 v16 14/48] refs.c: log_ref_write should try to return meaningful errno

2014-06-12 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 v16 28/48] sequencer.c: use ref transactions for all ref updates

2014-06-12 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 v16 31/48] refs.c: change update_ref to use a transaction

2014-06-12 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 8523c39..30b5db1 100644 --- a

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

2014-06-12 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 v16 21/48] refs.c: change ref_transaction_create to do error checking and return status

2014-06-12 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 v16 36/48] refs.c: remove the update_ref_lock function

2014-06-12 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 v16 17/48] refs.c: make update_ref_write update a strbuf on failure

2014-06-12 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 v16 45/48] refs.c: pass a skip list to name_conflict_fn

2014-06-12 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 v16 37/48] refs.c: remove the update_ref_write function

2014-06-12 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 v16 48/48] refs.c: make write_ref_sha1 static

2014-06-12 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 8917832..31d7616 100644 --- a/refs.c +++ b/refs.c @@ -2639,6

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

2014-06-12 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 11084a1..1cb6ef6 100644 --- a/refs.c +++ b/refs.c @@ -2143,15 +2143,6 @@ static struct ref_lock *lock_ref_sha1_basic(

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

2014-06-12 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 d4e3442..15bb250 100644 --- a/refs.c +++ b/refs.c @@ -2518,11 +2518,6 @@ static int repack_without_refs

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

2014-06-12 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 1cb6ef6..d4e3442 100644 --- a/refs.c +++ b/refs.c @@ -30,6 +30,12 @@ static inline int

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

2014-06-12 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 v16 47/48] fetch.c: change s_update_ref to use a ref transaction

2014-06-12 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 v16 43/48] refs.c: move the check for valid refname to lock_ref_sha1_basic

2014-06-12 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 v16 07/48] lockfile.c: make lock_file return a meaningful errno on failurei

2014-06-12 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 v16 16/48] refs.c: add an err argument to delete_ref_loose

2014-06-12 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 v16 10/48] refs.c: verify_lock should set errno to something meaningful

2014-06-12 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 v16 06/48] lockfile.c: add a new public function unable_to_lock_message

2014-06-12 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 v16 01/48] refs.c: remove ref_transaction_rollback

2014-06-12 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 v16 15/48] refs.c: make ref_update_reject_duplicates take a strbuf argument for errors

2014-06-12 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 v16 12/48] refs.c: commit_packed_refs to return a meaningful errno on failure

2014-06-12 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 v16 18/48] update-ref: use err argument to get error from ref_transaction_commit

2014-06-12 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 v16 04/48] refs.c: allow passing NULL to ref_transaction_free

2014-06-12 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 v16 03/48] refs.c: constify the sha arguments for ref_transaction_create|delete|update

2014-06-12 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

Re: [PATCH v14 24/40] receive-pack.c: use a reference transaction for updating the refs

2014-06-11 Thread Ronnie Sahlberg
Thanks. Done. I added a function to stop leaking commands too. On Tue, Jun 10, 2014 at 4:18 PM, Jonathan Nieder wrote: > Ronnie Sahlberg wrote: > >> --- a/builtin/receive-pack.c >> +++ b/builtin/receive-pack.c >> @@ -46,6 +46,7 @@ static void *head_name_to_free; >>

Re: [PATCH v14 08/40] refs.c: add an err argument to delete_ref_loose

2014-06-11 Thread Ronnie Sahlberg
Done. Thanks. On Tue, Jun 10, 2014 at 3:49 PM, Jonathan Nieder wrote: > Ronnie Sahlberg wrote: > >> --- a/refs.c >> +++ b/refs.c >> @@ -2510,16 +2510,38 @@ static int repack_without_ref(const char *refname) > [...] >> +static int unlink_or_err(con

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

2014-06-10 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 v15 09/48] refs.c: make sure log_ref_setup returns a meaningful errno

2014-06-10 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 v15 05/48] refs.c: add a strbuf argument to ref_transaction_commit for error logging

2014-06-10 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 v15 00/48] Use ref transactions

2014-06-10 Thread Ronnie Sahlberg
series later. The rename_ref changes are thus no longer part of this series. Version 13: - This version should cover all of JNs suggestions on the previous series. If I missed anything I appologize. ... Ronnie Sahlberg (48): refs.c: remove ref_transaction_rollback refs.c

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

2014-06-10 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 v15 03/48] refs.c: constify the sha arguments for ref_transaction_create|delete|update

2014-06-10 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 v15 06/48] lockfile.c: add a new public function unable_to_lock_message

2014-06-10 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 v15 13/48] refs.c: make resolve_ref_unsafe set errno to something meaningful on error

2014-06-10 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 v15 32/48] receive-pack.c: use a reference transaction for updating the refs

2014-06-10 Thread Ronnie Sahlberg
Wrap all the ref updates inside a transaction. Signed-off-by: Ronnie Sahlberg --- builtin/receive-pack.c | 31 ++- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index c323081..13f4a63 100644 --- a

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

2014-06-10 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 v15 08/48] refs.c: add an err argument to repack_without_refs

2014-06-10 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 v15 10/48] refs.c: verify_lock should set errno to something meaningful

2014-06-10 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 v15 29/48] fast-import.c: change update_branch to use ref transactions

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

<    2   3   4   5   6   7   8   9   10   11   >