libperf: Adopt perf_mmap__mmap_len() function from tools/perf
authorJiri Olsa <jolsa@kernel.org>
Mon, 7 Oct 2019 12:53:11 +0000 (14:53 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 10 Oct 2019 12:41:38 +0000 (09:41 -0300)
Move perf_mmap__mmap_len() from tools/perf wto libperf, it will be used
in the following patches. And rename the existing perf's function to
mmap__mmap_len().

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/20191007125344.14268-4-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-record.c
tools/perf/lib/include/internal/mmap.h
tools/perf/lib/mmap.c
tools/perf/util/mmap.c
tools/perf/util/mmap.h

index 23332861de6e4ba0835ca678b1e7d8779f21bc6b..f05e8b7955e4c169071c615e32003def7892fcaf 100644 (file)
@@ -276,7 +276,7 @@ static int record__aio_pushfn(struct mmap *map, void *to, void *buf, size_t size
 
        if (record__comp_enabled(aio->rec)) {
                size = zstd_compress(aio->rec->session, aio->data + aio->size,
-                                    perf_mmap__mmap_len(map) - aio->size,
+                                    mmap__mmap_len(map) - aio->size,
                                     buf, size);
        } else {
                memcpy(aio->data + aio->size, buf, size);
@@ -488,7 +488,7 @@ static int record__pushfn(struct mmap *map, void *to, void *bf, size_t size)
        struct record *rec = to;
 
        if (record__comp_enabled(rec)) {
-               size = zstd_compress(rec->session, map->data, perf_mmap__mmap_len(map), bf, size);
+               size = zstd_compress(rec->session, map->data, mmap__mmap_len(map), bf, size);
                bf   = map->data;
        }
 
index b26806b36bb6e3d0b941af2fe747a6e9587090c6..e7a67260940ca73b04f1c0ea1a6112e805b43c94 100644 (file)
@@ -34,6 +34,8 @@ struct perf_mmap_param {
        int     mask;
 };
 
+size_t perf_mmap__mmap_len(struct perf_mmap *map);
+
 void perf_mmap__init(struct perf_mmap *map, bool overwrite);
 
 #endif /* __LIBPERF_INTERNAL_MMAP_H */
index 3da6177510e6f825988f3f5f9f0686462a518ba7..cc4284da4d99a965b11b20198ab47bd336dc791b 100644 (file)
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <internal/mmap.h>
+#include <internal/lib.h>
 
 void perf_mmap__init(struct perf_mmap *map, bool overwrite)
 {
@@ -7,3 +8,8 @@ void perf_mmap__init(struct perf_mmap *map, bool overwrite)
        map->overwrite = overwrite;
        refcount_set(&map->refcnt, 0);
 }
+
+size_t perf_mmap__mmap_len(struct perf_mmap *map)
+{
+       return map->mask + 1 + page_size;
+}
index a496ced5ed2a8824c991e01697ec80df0d2a181b..a8e81c4cbae8e2ad130aa3f9ed7bccd21192a58f 100644 (file)
@@ -23,9 +23,9 @@
 #include "../perf.h"
 #include <internal/lib.h> /* page_size */
 
-size_t perf_mmap__mmap_len(struct mmap *map)
+size_t mmap__mmap_len(struct mmap *map)
 {
-       return map->core.mask + 1 + page_size;
+       return perf_mmap__mmap_len(&map->core);
 }
 
 /* When check_messup is true, 'end' must points to a good entry */
@@ -170,7 +170,7 @@ static int perf_mmap__aio_enabled(struct mmap *map)
 #ifdef HAVE_LIBNUMA_SUPPORT
 static int perf_mmap__aio_alloc(struct mmap *map, int idx)
 {
-       map->aio.data[idx] = mmap(NULL, perf_mmap__mmap_len(map), PROT_READ|PROT_WRITE,
+       map->aio.data[idx] = mmap(NULL, mmap__mmap_len(map), PROT_READ|PROT_WRITE,
                                  MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
        if (map->aio.data[idx] == MAP_FAILED) {
                map->aio.data[idx] = NULL;
@@ -183,7 +183,7 @@ static int perf_mmap__aio_alloc(struct mmap *map, int idx)
 static void perf_mmap__aio_free(struct mmap *map, int idx)
 {
        if (map->aio.data[idx]) {
-               munmap(map->aio.data[idx], perf_mmap__mmap_len(map));
+               munmap(map->aio.data[idx], mmap__mmap_len(map));
                map->aio.data[idx] = NULL;
        }
 }
@@ -196,7 +196,7 @@ static int perf_mmap__aio_bind(struct mmap *map, int idx, int cpu, int affinity)
 
        if (affinity != PERF_AFFINITY_SYS && cpu__max_node() > 1) {
                data = map->aio.data[idx];
-               mmap_len = perf_mmap__mmap_len(map);
+               mmap_len = mmap__mmap_len(map);
                node_mask = 1UL << cpu__get_node(cpu);
                if (mbind(data, mmap_len, MPOL_BIND, &node_mask, 1, 0)) {
                        pr_err("Failed to bind [%p-%p] AIO buffer to node %d: error %m\n",
@@ -210,7 +210,7 @@ static int perf_mmap__aio_bind(struct mmap *map, int idx, int cpu, int affinity)
 #else /* !HAVE_LIBNUMA_SUPPORT */
 static int perf_mmap__aio_alloc(struct mmap *map, int idx)
 {
-       map->aio.data[idx] = malloc(perf_mmap__mmap_len(map));
+       map->aio.data[idx] = malloc(mmap__mmap_len(map));
        if (map->aio.data[idx] == NULL)
                return -1;
 
@@ -315,11 +315,11 @@ void perf_mmap__munmap(struct mmap *map)
 {
        perf_mmap__aio_munmap(map);
        if (map->data != NULL) {
-               munmap(map->data, perf_mmap__mmap_len(map));
+               munmap(map->data, mmap__mmap_len(map));
                map->data = NULL;
        }
        if (map->core.base != NULL) {
-               munmap(map->core.base, perf_mmap__mmap_len(map));
+               munmap(map->core.base, mmap__mmap_len(map));
                map->core.base = NULL;
                map->core.fd = -1;
                refcount_set(&map->core.refcnt, 0);
@@ -371,7 +371,7 @@ int perf_mmap__mmap(struct mmap *map, struct mmap_params *mp, int fd, int cpu)
        refcount_set(&map->core.refcnt, 2);
        map->core.prev = 0;
        map->core.mask = mp->core.mask;
-       map->core.base = mmap(NULL, perf_mmap__mmap_len(map), mp->core.prot,
+       map->core.base = mmap(NULL, mmap__mmap_len(map), mp->core.prot,
                         MAP_SHARED, fd, 0);
        if (map->core.base == MAP_FAILED) {
                pr_debug2("failed to mmap perf event ring buffer, error %d\n",
@@ -389,7 +389,7 @@ int perf_mmap__mmap(struct mmap *map, struct mmap_params *mp, int fd, int cpu)
        map->comp_level = mp->comp_level;
 
        if (map->comp_level && !perf_mmap__aio_enabled(map)) {
-               map->data = mmap(NULL, perf_mmap__mmap_len(map), PROT_READ|PROT_WRITE,
+               map->data = mmap(NULL, mmap__mmap_len(map), PROT_READ|PROT_WRITE,
                                 MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
                if (map->data == MAP_FAILED) {
                        pr_debug2("failed to mmap data buffer, error %d\n",
index 4ff75d8aeb05042ffac5ff19637baf3573594c24..2b97dc6d9ee26d3710d867157e1b217c68e56ca7 100644 (file)
@@ -67,7 +67,7 @@ union perf_event *perf_mmap__read_event(struct mmap *map);
 int perf_mmap__push(struct mmap *md, void *to,
                    int push(struct mmap *map, void *to, void *buf, size_t size));
 
-size_t perf_mmap__mmap_len(struct mmap *map);
+size_t mmap__mmap_len(struct mmap *map);
 
 int perf_mmap__read_init(struct mmap *md);
 void perf_mmap__read_done(struct mmap *map);