]> git.ipfire.org Git - thirdparty/git.git/commit - packfile.c
pack: make packed_git_mru global a value instead of a pointer
authorJonathan Nieder <jrnieder@gmail.com>
Tue, 12 Sep 2017 17:28:39 +0000 (10:28 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Sep 2017 06:05:48 +0000 (15:05 +0900)
commit607bd8315c6886eb61561bbba394616bc6fdf031
treee6ef91ad9da913688e3d7e90cfda0efeb1027063
parent6867272d5b5615bd74ec97bf35b4c4a8d9fe3a51
pack: make packed_git_mru global a value instead of a pointer

The MRU cache that keeps track of recently used packs is represented
using two global variables:

struct mru packed_git_mru_storage;
struct mru *packed_git_mru = &packed_git_mru_storage;

Callers never assign to the packed_git_mru pointer, though, so we can
simplify by eliminating it and using &packed_git_mru_storage (renamed
to &packed_git_mru) directly.  This variable is only used by the
packfile subsystem, making this a relatively uninvasive change (and
any new unadapted callers would trigger a compile error).

Noticed while moving these globals to the object_store struct.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pack-objects.c
cache.h
packfile.c