Line data Source code
1 : /*
2 : * Copyright (c) 2020 Cisco and/or its affiliates.
3 : * Licensed under the Apache License, Version 2.0 (the "License");
4 : * you may not use this file except in compliance with the License.
5 : * You may obtain a copy of the License at:
6 : *
7 : * http://www.apache.org/licenses/LICENSE-2.0
8 : *
9 : * Unless required by applicable law or agreed to in writing, software
10 : * distributed under the License is distributed on an "AS IS" BASIS,
11 : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 : * See the License for the specific language governing permissions and
13 : * limitations under the License.
14 : */
15 :
16 : #include <vppinfra/clib.h>
17 : #include <vppinfra/mem.h>
18 : #include <vppinfra/time.h>
19 : #include <vppinfra/format.h>
20 : #include <vppinfra/clib_error.h>
21 :
22 : __clib_export clib_mem_main_t clib_mem_main;
23 :
24 : __clib_export void *
25 211 : clib_mem_vm_map (void *base, uword size, clib_mem_page_sz_t log2_page_sz,
26 : char *fmt, ...)
27 : {
28 : va_list va;
29 : void *rv;
30 : u8 *s;
31 :
32 211 : va_start (va, fmt);
33 211 : s = va_format (0, fmt, &va);
34 211 : vec_add1 (s, 0);
35 211 : rv = clib_mem_vm_map_internal (base, log2_page_sz, size, -1, 0, (char *) s);
36 211 : va_end (va);
37 211 : vec_free (s);
38 211 : return rv;
39 : }
40 :
41 : __clib_export void *
42 26898 : clib_mem_vm_map_stack (uword size, clib_mem_page_sz_t log2_page_sz,
43 : char *fmt, ...)
44 : {
45 : va_list va;
46 : void *rv;
47 : u8 *s;
48 :
49 26898 : va_start (va, fmt);
50 26898 : s = va_format (0, fmt, &va);
51 26898 : vec_add1 (s, 0);
52 26898 : rv = clib_mem_vm_map_internal (0, log2_page_sz, size, -1, 0, (char *) s);
53 26898 : va_end (va);
54 26898 : vec_free (s);
55 26898 : return rv;
56 : }
57 :
58 : __clib_export void *
59 765 : clib_mem_vm_map_shared (void *base, uword size, int fd, uword offset,
60 : char *fmt, ...)
61 : {
62 : va_list va;
63 : void *rv;
64 : u8 *s;
65 765 : va_start (va, fmt);
66 765 : s = va_format (0, fmt, &va);
67 765 : vec_add1 (s, 0);
68 765 : rv = clib_mem_vm_map_internal (base, 0, size, fd, offset, (char *) s);
69 765 : va_end (va);
70 765 : vec_free (s);
71 765 : return rv;
72 : }
73 :
74 : u8 *
75 841 : format_clib_mem_page_stats (u8 * s, va_list * va)
76 : {
77 841 : clib_mem_page_stats_t *stats = va_arg (*va, clib_mem_page_stats_t *);
78 841 : u32 indent = format_get_indent (s) + 2;
79 :
80 841 : s = format (s, "page stats: page-size %U, total %lu, mapped %lu, "
81 841 : "not-mapped %lu", format_log2_page_size, stats->log2_page_sz,
82 : stats->total, stats->mapped, stats->not_mapped);
83 :
84 841 : if (stats->unknown)
85 0 : s = format (s, ", unknown %lu", stats->unknown);
86 :
87 14297 : for (int i = 0; i < CLIB_MAX_NUMAS; i++)
88 13456 : if (stats->per_numa[i])
89 841 : s = format (s, "\n%Unuma %u: %lu pages, %U bytes",
90 : format_white_space, indent, i,
91 : stats->per_numa[i],
92 : format_memory_size,
93 841 : stats->per_numa[i] << stats->log2_page_sz);
94 :
95 841 : return s;
96 : }
97 :
98 : /*
99 : * fd.io coding-style-patch-verification: ON
100 : *
101 : * Local Variables:
102 : * eval: (c-set-style "gnu")
103 : * End:
104 : */
|