about summary refs log tree commit homepage
path: root/lib/PublicInbox/Git.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Git.pm')
-rw-r--r--lib/PublicInbox/Git.pm16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index 5ef1db2f..cf51239f 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -12,7 +12,7 @@ use v5.10.1;
 use parent qw(Exporter);
 use POSIX ();
 use IO::Handle; # ->autoflush
-use Errno qw(EINTR EAGAIN);
+use Errno qw(EINTR EAGAIN ENOENT);
 use File::Glob qw(bsd_glob GLOB_NOSORT);
 use File::Spec ();
 use Time::HiRes qw(stat);
@@ -523,6 +523,20 @@ sub manifest_entry {
         $ent;
 }
 
+sub cleanup_if_unlinked {
+        my ($self) = @_;
+        return cleanup($self) if $^O ne 'linux';
+        # Linux-specific /proc/$PID/maps access
+        # TODO: support this inside git.git
+        for my $fld (qw(pid pid_c)) {
+                my $pid = $self->{$fld} // next;
+                open my $fh, '<', "/proc/$pid/maps" or next;
+                while (<$fh>) {
+                        return cleanup($self) if /\.(?:idx|pack) \(deleted\)$/;
+                }
+        }
+}
+
 1;
 __END__
 =pod