public inbox for libc-help@sourceware.org
 help / color / mirror / Atom feed
From: Zhengyu Zhang <freeman.zhang1992@gmail.com>
To: libc-help@sourceware.org
Subject: mmap&munmap syscall and malloc&free function call mismatch
Date: Tue, 30 Mar 2021 22:20:10 +0800	[thread overview]
Message-ID: <CAOYRFkkTyr1qeA4Kdb7+nd=B0N3u-nz+DEfcEbmhWhk5deuFig@mail.gmail.com> (raw)

Hi list!

As I run the code shown below, mmap&munmap syscall doesn’t match
malloc&free in some cases.

```
// g++ test_memcpy.c -std=c++11 -lpthread -O0
#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include <unistd.h>
#include <thread>
#include <iostream>

#define THREAD_NUM 40

void foo()
{
        char *src_buf = (char *)malloc(256*1024);
        char *dst_buf = NULL;
        long loop = 80000;
        memset(src_buf, 1, 256*1024);
        while (--loop) {
                posix_memalign((void**)&dst_buf, 4096, 256 * 1024);
                memcpy(dst_buf, src_buf, 256 * 1024);
                free(dst_buf);
                //usleep(100);
        }
}

int main() {
    int i = 0;
    std::thread *t[THREAD_NUM];
    for (i = 0; i < THREAD_NUM; ++i)
        t[i] = new std::thread(foo);

    for (i = 0; i < THREAD_NUM; ++i)
        t[i]->join();
    return 0;
}
```
The binary is linked against glibc 2.17.

When THREAD_NUM=4, strace results show mmap is called 320,000 times,
as expected (4 * 80,000)
When THREAD_NUM=40, mmap is only called about 430,0000 times. I am
expecting 3,200,000 (40 * 80,000)
Then I add `usleep(100)` in the loop, it becomes 3,200,000 as expected.

I do not know how to explain this. Since I investigate the glibc
malloc code, free() will munmap the mmapped memory immediately so
there should be no chance for caching stuff to save syscall.

So how can mmap&munmap be less than malloc&free?


All the best!
Zhengyu

                 reply	other threads:[~2021-03-30 14:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOYRFkkTyr1qeA4Kdb7+nd=B0N3u-nz+DEfcEbmhWhk5deuFig@mail.gmail.com' \
    --to=freeman.zhang1992@gmail.com \
    --cc=libc-help@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).