blob: c55d631d3db15ed794ad8c90f422e9168387182a [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070039#include <vppinfra/heap.h>
40#include <vppinfra/pool.h>
41
42#include "svm.h"
43
44
Dave Barach8a7fb0c2016-07-08 14:44:23 -040045int
46main (int argc, char **argv)
Ed Warnickecb9cada2015-12-08 15:45:58 -070047{
Dave Barach8a7fb0c2016-07-08 14:44:23 -040048 svm_region_t *root_rp, *rp;
49 svm_map_region_args_t *a = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Dave Barach8a7fb0c2016-07-08 14:44:23 -040051 vec_validate (a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Dave Barach8a7fb0c2016-07-08 14:44:23 -040053 root_rp = svm_region_init ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Dave Barach8a7fb0c2016-07-08 14:44:23 -040055 ASSERT (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barach8a7fb0c2016-07-08 14:44:23 -040057 a->name = "/qvnet";
58 a->size = (4 << 10);
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
Dave Barach8a7fb0c2016-07-08 14:44:23 -040060 rp = svm_region_find_or_create (root_rp, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
Dave Barach8a7fb0c2016-07-08 14:44:23 -040062 ASSERT (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
Dave Barach8a7fb0c2016-07-08 14:44:23 -040064 *((u32 *) rp->data_base) = 0xdeadbeef;
65 svm_region_unmap (root_rp, rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
Dave Barach8a7fb0c2016-07-08 14:44:23 -040067 fformat (stdout, "exiting...\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Dave Barach8a7fb0c2016-07-08 14:44:23 -040069 exit (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070}
Dave Barach8a7fb0c2016-07-08 14:44:23 -040071
72/*
73 * fd.io coding-style-patch-verification: ON
74 *
75 * Local Variables:
76 * eval: (c-set-style "gnu")
77 * End:
78 */