* [PATCH] sha1_file: make read_info_alternates static
@ 2017-08-15 20:13 Stefan Beller
2017-08-15 21:31 ` Brandon Williams
2017-08-15 21:34 ` Jeff King
0 siblings, 2 replies; 3+ messages in thread
From: Stefan Beller @ 2017-08-15 20:13 UTC (permalink / raw)
To: jonathantanmy; +Cc: git, Stefan Beller
read_info_alternates is not used from outside, so let's make it static.
We have to declare the function before link_alt_odb_entry instead of
moving the code around, link_alt_odb_entry calls read_info_alternates,
which in turn calls link_alt_odb_entry.
Signed-off-by: Stefan Beller <sbeller@google.com>
---
This helps in a later refactoring (moving the object
store to the_repository struct), too.
Thanks,
Stefan
cache.h | 1 -
sha1_file.c | 3 ++-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cache.h b/cache.h
index 1c69d2a05a..4109efcf24 100644
--- a/cache.h
+++ b/cache.h
@@ -1551,7 +1551,6 @@ extern struct alternate_object_database {
char path[FLEX_ARRAY];
} *alt_odb_list;
extern void prepare_alt_odb(void);
-extern void read_info_alternates(const char * relative_base, int depth);
extern char *compute_alternate_path(const char *path, struct strbuf *err);
typedef int alt_odb_fn(struct alternate_object_database *, void *);
extern int foreach_alt_odb(alt_odb_fn, void*);
diff --git a/sha1_file.c b/sha1_file.c
index b60ae15f70..9186e2c6c7 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -347,6 +347,7 @@ static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
* SHA1, an extra slash for the first level indirection, and the
* terminating NUL.
*/
+static void read_info_alternates(const char * relative_base, int depth);
static int link_alt_odb_entry(const char *entry, const char *relative_base,
int depth, const char *normalized_objdir)
{
@@ -448,7 +449,7 @@ static void link_alt_odb_entries(const char *alt, int len, int sep,
strbuf_release(&objdirbuf);
}
-void read_info_alternates(const char * relative_base, int depth)
+static void read_info_alternates(const char * relative_base, int depth)
{
char *map;
size_t mapsz;
--
2.14.0.rc0.3.g6c2e499285
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] sha1_file: make read_info_alternates static
2017-08-15 20:13 [PATCH] sha1_file: make read_info_alternates static Stefan Beller
@ 2017-08-15 21:31 ` Brandon Williams
2017-08-15 21:34 ` Jeff King
1 sibling, 0 replies; 3+ messages in thread
From: Brandon Williams @ 2017-08-15 21:31 UTC (permalink / raw)
To: Stefan Beller; +Cc: jonathantanmy, git
On 08/15, Stefan Beller wrote:
> read_info_alternates is not used from outside, so let's make it static.
>
> We have to declare the function before link_alt_odb_entry instead of
> moving the code around, link_alt_odb_entry calls read_info_alternates,
> which in turn calls link_alt_odb_entry.
>
> Signed-off-by: Stefan Beller <sbeller@google.com>
> ---
>
> This helps in a later refactoring (moving the object
> store to the_repository struct), too.
>
> Thanks,
> Stefan
>
> cache.h | 1 -
> sha1_file.c | 3 ++-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/cache.h b/cache.h
> index 1c69d2a05a..4109efcf24 100644
> --- a/cache.h
> +++ b/cache.h
> @@ -1551,7 +1551,6 @@ extern struct alternate_object_database {
> char path[FLEX_ARRAY];
> } *alt_odb_list;
> extern void prepare_alt_odb(void);
> -extern void read_info_alternates(const char * relative_base, int depth);
> extern char *compute_alternate_path(const char *path, struct strbuf *err);
> typedef int alt_odb_fn(struct alternate_object_database *, void *);
> extern int foreach_alt_odb(alt_odb_fn, void*);
> diff --git a/sha1_file.c b/sha1_file.c
> index b60ae15f70..9186e2c6c7 100644
> --- a/sha1_file.c
> +++ b/sha1_file.c
> @@ -347,6 +347,7 @@ static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
> * SHA1, an extra slash for the first level indirection, and the
> * terminating NUL.
> */
> +static void read_info_alternates(const char * relative_base, int depth);
> static int link_alt_odb_entry(const char *entry, const char *relative_base,
> int depth, const char *normalized_objdir)
> {
> @@ -448,7 +449,7 @@ static void link_alt_odb_entries(const char *alt, int len, int sep,
> strbuf_release(&objdirbuf);
> }
>
> -void read_info_alternates(const char * relative_base, int depth)
> +static void read_info_alternates(const char * relative_base, int depth)
> {
> char *map;
> size_t mapsz;
> --
> 2.14.0.rc0.3.g6c2e499285
>
Looks good to me. Only nit is I would fix the style to not have a space
after the '*' ;)
--
Brandon Williams
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sha1_file: make read_info_alternates static
2017-08-15 20:13 [PATCH] sha1_file: make read_info_alternates static Stefan Beller
2017-08-15 21:31 ` Brandon Williams
@ 2017-08-15 21:34 ` Jeff King
1 sibling, 0 replies; 3+ messages in thread
From: Jeff King @ 2017-08-15 21:34 UTC (permalink / raw)
To: Stefan Beller; +Cc: jonathantanmy, git
On Tue, Aug 15, 2017 at 01:13:19PM -0700, Stefan Beller wrote:
> read_info_alternates is not used from outside, so let's make it static.
>
> We have to declare the function before link_alt_odb_entry instead of
> moving the code around, link_alt_odb_entry calls read_info_alternates,
> which in turn calls link_alt_odb_entry.
>
> Signed-off-by: Stefan Beller <sbeller@google.com>
Thanks, this looks good. It should have been part of my series with
a5b34d2152 (alternates: provide helper for adding to alternates list,
2016-10-03), which removed the last external call.
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-08-15 21:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15 20:13 [PATCH] sha1_file: make read_info_alternates static Stefan Beller
2017-08-15 21:31 ` Brandon Williams
2017-08-15 21:34 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).