blob: 5519a7d6f3e1612f3b2df306355597163b19c6fc [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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#ifndef __included_physmem_h__
16#define __included_physmem_h__
17
18/* Manage I/O physical memory. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040019#define _GNU_SOURCE
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <sched.h>
21#include <vppinfra/cache.h>
22#include <vppinfra/error.h>
23#include <vppinfra/mheap.h>
24#include <vppinfra/os.h>
25
26#include <vlib/vlib.h>
27#include <vlib/unix/unix.h>
28
29#include <sys/fcntl.h> /* for open */
30#include <sys/file.h> /* for flock */
31#include <sys/ioctl.h>
32#include <sys/types.h>
33#include <sys/stat.h>
34#include <fcntl.h>
35#include <sys/ipc.h>
36#include <sys/shm.h>
37
Dave Barach9b8ffd92016-07-08 08:13:45 -040038typedef struct
39{
Ed Warnickecb9cada2015-12-08 15:45:58 -070040 /* Virtual memory via mmaped. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040041 void *mem;
Ed Warnickecb9cada2015-12-08 15:45:58 -070042
43 /* Size in bytes. */
44 uword mem_size;
45
46 /* Heap allocated out of virtual memory. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040047 void *heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
49 /* huge TLB segment id */
50 int shmid;
51
52 /* should we try to use htlb ? */
53 int no_hugepages;
54
55} physmem_main_t;
56
57#endif /* __included_physmem_h__ */
Dave Barach9b8ffd92016-07-08 08:13:45 -040058
59/*
60 * fd.io coding-style-patch-verification: ON
61 *
62 * Local Variables:
63 * eval: (c-set-style "gnu")
64 * End:
65 */