• S
    Support unmapping windows on 'temporary' packfiles. · 11daf39b
    Shawn O. Pearce 提交于
    If a command opens a packfile for only temporary access and does not
    install the struct packed_git* into the global packed_git list then
    we are unable to unmap any inactive windows within that packed_git,
    causing the overall process to exceed core.packedGitLimit.
    
    We cannot force the callers to install their temporary packfile
    into the packed_git chain as doing so would allow that (possibly
    corrupt but currently being verified) temporary packfile to become
    part of the local ODB, which may allow it to be considered for
    object resolution when it may not actually be a valid packfile.
    
    So to support unmapping the windows of these temporary packfiles we
    also scan the windows of the struct packed_git which was supplied
    to use_pack().  Since commands only work with one temporary packfile
    at a time scanning the one supplied to use_pack() and all packs
    installed into packed_git should cover everything available in
    memory.
    
    We also have to be careful to not close the file descriptor of
    the packed_git which was handed to use_pack() when all of that
    packfile's windows have been unmapped, as we are already past the
    open call that would open the packfile and need the file descriptor
    to be ready for mmap() after unuse_one_window returns.
    Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
    Signed-off-by: NJunio C Hamano <junkio@cox.net>
    11daf39b
sha1_file.c 47.4 KB