blob: ab0b9e248e628d6a1d2d112b394b4677a8a9b197 [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 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -040015/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070016 *------------------------------------------------------------------
17 * svm_test.c -- brain police
18 *------------------------------------------------------------------
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <sys/types.h>
24#include <sys/mman.h>
25#include <sys/stat.h>
26#include <netinet/in.h>
27#include <signal.h>
28#include <pthread.h>
29#include <unistd.h>
30#include <time.h>
31#include <fcntl.h>
32#include <string.h>
33#include <vppinfra/clib.h>
34#include <vppinfra/vec.h>
35#include <vppinfra/hash.h>
36#include <vppinfra/bitmap.h>
37#include <vppinfra/fifo.h>
38#include <vppinfra/time.h>
39#include <vppinfra/mheap.h>
40#include <vppinfra/heap.h>
41#include <vppinfra/pool.h>
42
43#include "svm.h"
44
45
Dave Barach8a7fb0c2016-07-08 14:44:23 -040046int
47main (int argc, char **argv)
Ed Warnickecb9cada2015-12-08 15:45:58 -070048{
Dave Barach8a7fb0c2016-07-08 14:44:23 -040049 svm_region_t *root_rp, *rp;
50 svm_map_region_args_t *a = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Dave Barach8a7fb0c2016-07-08 14:44:23 -040052 vec_validate (a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Dave Barach8a7fb0c2016-07-08 14:44:23 -040054 root_rp = svm_region_init ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Dave Barach8a7fb0c2016-07-08 14:44:23 -040056 ASSERT (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
Dave Barach8a7fb0c2016-07-08 14:44:23 -040058 a->name = "/qvnet";
59 a->size = (4 << 10);
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Dave Barach8a7fb0c2016-07-08 14:44:23 -040061 rp = svm_region_find_or_create (root_rp, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Dave Barach8a7fb0c2016-07-08 14:44:23 -040063 ASSERT (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
Dave Barach8a7fb0c2016-07-08 14:44:23 -040065 *((u32 *) rp->data_base) = 0xdeadbeef;
66 svm_region_unmap (root_rp, rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Dave Barach8a7fb0c2016-07-08 14:44:23 -040068 fformat (stdout, "exiting...\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Dave Barach8a7fb0c2016-07-08 14:44:23 -040070 exit (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071}
Dave Barach8a7fb0c2016-07-08 14:44:23 -040072
73/*
74 * fd.io coding-style-patch-verification: ON
75 *
76 * Local Variables:
77 * eval: (c-set-style "gnu")
78 * End:
79 */