From: Koji Nakamaru via GitGitGadget <hidden> Date: 2025-10-20 22:35:05
From: Koji Nakamaru <redacted>
Executing many mmap/munmap calls alternately can cause a huge load on
macOS. In order to reduce it, we should temporarily store munmap
operations in a queue and process them all at once when the queue is
filled. When the program terminates, we can discard any remaining munmap
operations as corresponding mmaped regions are automatically reclaimed.
Add a queue for munmap operations to perform them all at once.
Here are some example timings. On the Linux kernel repository that
requires about 1700 mmap/munmap calls:
time git ls-tree -r -l --full-tree 211ddde > /dev/null
Before:
real 0m2.083s
user 0m0.201s
sys 0m1.873s
After:
real 0m0.243s
user 0m0.179s
sys 0m0.052s
On a private repository that requires about 943000 mmap/munmap calls:
time git ls-tree -r -l --full-tree xxxxxxx > /dev/null
Before:
real 27m15.138s
user 0m5.084s
sys 27m9.636s
After:
real 0m24.209s
user 0m3.055s
sys 0m21.123s
Signed-off-by: Koji Nakamaru <redacted>
---
macOS: queue for munmap operations
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1993%2FKojiNakamaru%2Ffeature%2Fosx-queued-munmap-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1993/KojiNakamaru/feature/osx-queued-munmap-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1993
Makefile | 1 +
compat/osxmmap.c | 49 +++++++++++++++++++++++++++++
compat/posix.h | 7 +++++
contrib/buildsystems/CMakeLists.txt | 4 +++
meson.build | 2 ++
5 files changed, 63 insertions(+)
create mode 100644 compat/osxmmap.c
@@ -0,0 +1,49 @@+#include<pthread.h>+#include"../git-compat-util.h"+/* We need original mmap/munmap here. */+#undef mmap+#undef munmap++/*+*OSXdoesn'thaveanyspecificsettinglikeLinux'svm.max_map_count,+*soCOUNT_MAXcanbeanylargenumber.Weheresetittothedefault+*valueofLinux'svm.max_map_count.+*/+#define COUNT_MAX (65530)++structmunmap_queue{+void*start;+size_tlength;+};++void*git_mmap(void*start,size_tlength,intprot,intflags,intfd,off_toffset)+{+/*+*Wecansimplydiscardmunmapoperationsinthequeueby+*restrictingmmaparguments.+*/+if(start!=NULL||flags!=MAP_PRIVATE||prot!=PROT_READ)+die("invalid usage of mmap");+returnmmap(start,length,prot,flags,fd,offset);+}++intgit_munmap(void*start,size_tlength)+{+staticpthread_mutex_tmutex;+staticstructmunmap_queue*queue;+staticintcount;+inti;++pthread_mutex_lock(&mutex);+if(!queue)+queue=xmalloc(COUNT_MAX*sizeof(structmunmap_queue));+queue[count].start=start;+queue[count].length=length;+if(++count==COUNT_MAX){+for(i=0;i<COUNT_MAX;i++)+munmap(queue[i].start,queue[i].length);+count=0;+}+pthread_mutex_unlock(&mutex);+return0;+}
Some comments inline, all up to improvements
On Mon, Oct 20, 2025 at 10:35:02PM +0000, Koji Nakamaru via GitGitGadget wrote:
From: Koji Nakamaru <redacted>
Executing many mmap/munmap calls alternately can cause a huge load on
macOS. In order to reduce it, we should temporarily store munmap
operations in a queue and process them all at once when the queue is
filled. When the program terminates, we can discard any remaining munmap
operations as corresponding mmaped regions are automatically reclaimed.
Add a queue for munmap operations to perform them all at once.
Suggestions for rewording:
In order to reduce the peak load store all munmap operations in a queue.
Process them all at once (and more efficient) when the queue is filled.
The queue may be ignored when the git process terminates. The operating
system will do all munmap() when the process exits.
quoted hunk
Here are some example timings. On the Linux kernel repository that
requires about 1700 mmap/munmap calls:
time git ls-tree -r -l --full-tree 211ddde > /dev/null
Before:
real 0m2.083s
user 0m0.201s
sys 0m1.873s
After:
real 0m0.243s
user 0m0.179s
sys 0m0.052s
On a private repository that requires about 943000 mmap/munmap calls:
time git ls-tree -r -l --full-tree xxxxxxx > /dev/null
Before:
real 27m15.138s
user 0m5.084s
sys 27m9.636s
After:
real 0m24.209s
user 0m3.055s
sys 0m21.123s
Signed-off-by: Koji Nakamaru <redacted>
---
macOS: queue for munmap operations
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1993%2FKojiNakamaru%2Ffeature%2Fosx-queued-munmap-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1993/KojiNakamaru/feature/osx-queued-munmap-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1993
Makefile | 1 +
compat/osxmmap.c | 49 +++++++++++++++++++++++++++++
compat/posix.h | 7 +++++
contrib/buildsystems/CMakeLists.txt | 4 +++
meson.build | 2 ++
5 files changed, 63 insertions(+)
create mode 100644 compat/osxmmap.c
@@ -0,0 +1,49 @@+#include<pthread.h>+#include"../git-compat-util.h"+/* We need original mmap/munmap here. */+#undef mmap+#undef munmap++/*+*OSXdoesn'thaveanyspecificsettinglikeLinux'svm.max_map_count,+*soCOUNT_MAXcanbeanylargenumber.Weheresetittothedefault+*valueofLinux'svm.max_map_count.+*/+#define COUNT_MAX (65530)
Why the parantheses ?
And would a less generic name be better, like
MAX_UNMAP_COUNT
+
+struct munmap_queue {
+ void *start;
+ size_t length;
+};
+
+void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset)
+{
+ /*
+ * We can simply discard munmap operations in the queue by
+ * restricting mmap arguments.
+ */
Should I read this as
The munmap queue is only ment to defere read-only mappings.
And that is what Git does at the moment.
@@ -278,6 +278,13 @@ int git_munmap(void *start, size_t length);#include<sys/mman.h>+#if defined(__APPLE__)
I think it would be better to have a global Makefile knob here.
Which
a) allows to take out this patch once the MacOs kernel is improved
b) allows to hook in this code for other OS
Something like DEFER_MUNMAPS - better suggestions welcome
From: Koji Nakamaru <hidden> Date: 2025-10-22 01:22:24
Thank you for detailed suggestions. As I discussed in another thread,
the root cause of many mmap/munmap calls was simply my ~/.gitconfig, so
I'm withdrawing this patch. I'll answer some of your comments below.
On Tue, Oct 21, 2025 at 3:26 PM Torsten Bögershausen [off-list ref] wrote:
Some comments inline, all up to improvements
On Mon, Oct 20, 2025 at 10:35:02PM +0000, Koji Nakamaru via GitGitGadget wrote:
quoted
From: Koji Nakamaru <redacted>
Executing many mmap/munmap calls alternately can cause a huge load on
macOS. In order to reduce it, we should temporarily store munmap
operations in a queue and process them all at once when the queue is
filled. When the program terminates, we can discard any remaining munmap
operations as corresponding mmaped regions are automatically reclaimed.
Add a queue for munmap operations to perform them all at once.
Suggestions for rewording:
In order to reduce the peak load store all munmap operations in a queue.
Process them all at once (and more efficient) when the queue is filled.
The queue may be ignored when the git process terminates. The operating
system will do all munmap() when the process exits.
Thank you, it is much clear.
quoted
Here are some example timings. On the Linux kernel repository that
requires about 1700 mmap/munmap calls:
time git ls-tree -r -l --full-tree 211ddde > /dev/null
Before:
real 0m2.083s
user 0m0.201s
sys 0m1.873s
After:
real 0m0.243s
user 0m0.179s
sys 0m0.052s
On a private repository that requires about 943000 mmap/munmap calls:
time git ls-tree -r -l --full-tree xxxxxxx > /dev/null
Before:
real 27m15.138s
user 0m5.084s
sys 27m9.636s
After:
real 0m24.209s
user 0m3.055s
sys 0m21.123s
Signed-off-by: Koji Nakamaru <redacted>
---
macOS: queue for munmap operations
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1993%2FKojiNakamaru%2Ffeature%2Fosx-queued-munmap-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1993/KojiNakamaru/feature/osx-queued-munmap-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1993
Makefile | 1 +
compat/osxmmap.c | 49 +++++++++++++++++++++++++++++
compat/posix.h | 7 +++++
contrib/buildsystems/CMakeLists.txt | 4 +++
meson.build | 2 ++
5 files changed, 63 insertions(+)
create mode 100644 compat/osxmmap.c
@@ -0,0 +1,49 @@+#include<pthread.h>+#include"../git-compat-util.h"+/* We need original mmap/munmap here. */+#undef mmap+#undef munmap++/*+*OSXdoesn'thaveanyspecificsettinglikeLinux'svm.max_map_count,+*soCOUNT_MAXcanbeanylargenumber.Weheresetittothedefault+*valueofLinux'svm.max_map_count.+*/+#define COUNT_MAX (65530)
Why the parantheses ?
And would a less generic name be better, like
MAX_UNMAP_COUNT
The parentheses are not required but I prefer them as discussed in [1].
I agree MAX_UNMAP_COUNT is more clear.
quoted
+
+struct munmap_queue {
+ void *start;
+ size_t length;
+};
+
+void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset)
+{
+ /*
+ * We can simply discard munmap operations in the queue by
+ * restricting mmap arguments.
+ */
Should I read this as
The munmap queue is only ment to defere read-only mappings.
And that is what Git does at the moment.
Yes. This part is actually borrowed from compat/mmap.c and I've also
verified that the predicate is valid by searching all mmap calls.
@@ -278,6 +278,13 @@ int git_munmap(void *start, size_t length);#include<sys/mman.h>+#if defined(__APPLE__)
I think it would be better to have a global Makefile knob here.
Which
a) allows to take out this patch once the MacOs kernel is improved
b) allows to hook in this code for other OS
Something like DEFER_MUNMAPS - better suggestions welcome
I followed your suggestion and adjusted code and Makefile, etc. (locally)
From: Jeff King <hidden> Date: 2025-10-21 08:06:27
On Mon, Oct 20, 2025 at 10:35:02PM +0000, Koji Nakamaru via GitGitGadget wrote:
From: Koji Nakamaru <redacted>
Executing many mmap/munmap calls alternately can cause a huge load on
macOS. In order to reduce it, we should temporarily store munmap
operations in a queue and process them all at once when the queue is
filled. When the program terminates, we can discard any remaining munmap
operations as corresponding mmaped regions are automatically reclaimed.
Add a queue for munmap operations to perform them all at once.
Here are some example timings. On the Linux kernel repository that
requires about 1700 mmap/munmap calls:
time git ls-tree -r -l --full-tree 211ddde > /dev/null
Why is it doing so many mmap calls? Do you have a ton of loose objects?
We have to mmap loose objects individually (because they're all in
separate files), but each pack only gets a single map (well, there's a
window parameter, but it's 1GB on 64-bit systems, so you should get a
handful of maps at most).
If you run "git gc", how does the resulting ls-tree perform? I have only
27 mmap() calls on my system.
I know that running "git gc" is relatively expensive, but it is also
bringing other optimizations (like the fact that we don't have to open()
and map each of those files in the first place!).
On a private repository that requires about 943000 mmap/munmap calls:
time git ls-tree -r -l --full-tree xxxxxxx > /dev/null
Ditto here. I'd be curious how well packed the repo is, and how it does
after a repack. If it has a very large packfile, you might also try:
git config core.packedGitWindowSize 4G
or similar (though for just an ls-tree, we should only be looking at
tree objects, which in general I'd expect to be in a confined area of
the packfile; so the 1GB window is probably plenty).
Does batching those unmaps actually make them faster? Or is it just that
the commands you showed did not fill the queue, so we essentially just
leaked all of those maps until the program exited?
If the latter, then I'd wonder:
1. Does this increase memory pressure, since the OS has no idea we're
not actually interested in those maps anymore? Some of them can be
quite large, if the command is looking at blobs.
2. How does it perform on a command that actually fills the queue? I
guess something like "git log --raw" might do it (though if my
guesses above are right, you'd need on the order of 64,000 loose
trees).
-Peff
From: Koji Nakamaru <hidden> Date: 2025-10-22 01:21:44
Thank you for pointing out many unusual mmap calls and other details. As
discussed below, the root cause was simply my ~/.gitconfig. This patch
may be useful in some rare/edge cases but a somewhat unusual hack, so
I'm withdrawing it.
On Tue, Oct 21, 2025 at 5:07 PM Jeff King [off-list ref] wrote:
On Mon, Oct 20, 2025 at 10:35:02PM +0000, Koji Nakamaru via GitGitGadget wrote:
quoted
From: Koji Nakamaru <redacted>
Executing many mmap/munmap calls alternately can cause a huge load on
macOS. In order to reduce it, we should temporarily store munmap
operations in a queue and process them all at once when the queue is
filled. When the program terminates, we can discard any remaining munmap
operations as corresponding mmaped regions are automatically reclaimed.
Add a queue for munmap operations to perform them all at once.
Here are some example timings. On the Linux kernel repository that
requires about 1700 mmap/munmap calls:
time git ls-tree -r -l --full-tree 211ddde > /dev/null
Why is it doing so many mmap calls? Do you have a ton of loose objects?
We have to mmap loose objects individually (because they're all in
separate files), but each pack only gets a single map (well, there's a
window parameter, but it's 1GB on 64-bit systems, so you should get a
handful of maps at most).
If you run "git gc", how does the resulting ls-tree perform? I have only
27 mmap() calls on my system.
I know that running "git gc" is relatively expensive, but it is also
bringing other optimizations (like the fact that we don't have to open()
and map each of those files in the first place!).
quoted
On a private repository that requires about 943000 mmap/munmap calls:
time git ls-tree -r -l --full-tree xxxxxxx > /dev/null
Ditto here. I'd be curious how well packed the repo is, and how it does
after a repack. If it has a very large packfile, you might also try:
git config core.packedGitWindowSize 4G
or similar (though for just an ls-tree, we should only be looking at
tree objects, which in general I'd expect to be in a confined area of
the packfile; so the 1GB window is probably plenty).
Following your suggestion, I investigated the number of mmap calls in
other environments and found much smaller counts. I tracked how
xmmap_gently() was called in packfile.c and found
settings->packed_git_window_size was different between environments. My
~/.gitconfig defined "packedGitLimit = 128m" and this caused many calls.
Does batching those unmaps actually make them faster? Or is it just that
the commands you showed did not fill the queue, so we essentially just
leaked all of those maps until the program exited?
If the latter, then I'd wonder:
1. Does this increase memory pressure, since the OS has no idea we're
not actually interested in those maps anymore? Some of them can be
quite large, if the command is looking at blobs.
2. How does it perform on a command that actually fills the queue? I
guess something like "git log --raw" might do it (though if my
guesses above are right, you'd need on the order of 64,000 loose
trees).
In my extreme cases, this batching makes them faster. Queue flushing has
occurred several times for the private repository case and not occurred
for the Linux kernel case. Though I haven't investigated in detail,
memory pressure doesn't seem to be critical (and it could also be
possible to adopt smarter thresholds).
I tested git log --raw for the Linux kernel repository. For reference,
the results are shown below:
without "packedGitLimit = 128m":
mmap 9
# without batching
real 1m3.970s
user 1m2.232s
sys 0m1.725s
# with batching
real 1m5.991s
user 0m58.637s
sys 0m4.315s
with "packedGitLimit = 128m":
mmap 3072538
# without batching
(It took too long so I stopped the execution)
real 518m6.928s
user 0m41.126s
sys 517m24.072s
# with batching
real 2m26.276s
user 1m8.495s
sys 1m3.230s
From: Jeff King <hidden> Date: 2025-10-22 09:05:50
On Wed, Oct 22, 2025 at 10:21:32AM +0900, Koji Nakamaru wrote:
quoted
Ditto here. I'd be curious how well packed the repo is, and how it does
after a repack. If it has a very large packfile, you might also try:
git config core.packedGitWindowSize 4G
or similar (though for just an ls-tree, we should only be looking at
tree objects, which in general I'd expect to be in a confined area of
the packfile; so the 1GB window is probably plenty).
Following your suggestion, I investigated the number of mmap calls in
other environments and found much smaller counts. I tracked how
xmmap_gently() was called in packfile.c and found
settings->packed_git_window_size was different between environments. My
~/.gitconfig defined "packedGitLimit = 128m" and this caused many calls.
Ah, very interesting. Yes, I think that helps explain why there were so
many mmap calls. I don't think there's a good reason to lower that
number in general, assuming the OS is reasonably good at dropping mapped
pages from RAM when there's memory pressure.
In my extreme cases, this batching makes them faster. Queue flushing has
occurred several times for the private repository case and not occurred
for the Linux kernel case. Though I haven't investigated in detail,
memory pressure doesn't seem to be critical (and it could also be
possible to adopt smarter thresholds).
OK, that's quite interesting that batching makes such a difference. I
guess somebody with more knowledge of macOS kernel internals could
probably explain it. Though it sounds like your problem was sufficiently
solved by dropping the extra config, it's a good fact for us to know
about in general.
-Peff