Re: [RFC PATCH 0/6] Hash Abstraction

2017-08-21 Thread Stefan Beller
On Sun, Aug 20, 2017 at 5:00 PM, brian m. carlson wrote: > = Overview > > This is an RFC series proposing a basic abstraction for hash functions. > > As we get closer to converting the remainder of the codebase to use > struct object_id, we should think about the design we want our hash > function

Re: [RFC PATCH 0/6] Hash Abstraction

2017-08-20 Thread Junio C Hamano
"brian m. carlson" writes: > brian m. carlson (6): > vcs-svn: remove unused prototypes > vcs-svn: rename repo functions to "svn_repo" > setup: expose enumerated repo info > Add structure representing hash algorithm > Integrate hash algorithm support with repo setup > Switch empty tree

[RFC PATCH 0/6] Hash Abstraction

2017-08-20 Thread brian m. carlson
= Overview This is an RFC series proposing a basic abstraction for hash functions. As we get closer to converting the remainder of the codebase to use struct object_id, we should think about the design we want our hash function abstraction to take. This series is a proposal for one idea to start