2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20 #ifndef __VMM_CONFIG_H__
21 #define __VMM_CONFIG_H__
27 //#include <palacios/vm_guest.h>
28 #include <palacios/vmm.h>
29 #include <palacios/vmm_xml.h>
30 #include <palacios/vmm_list.h>
31 #include <palacios/vmm_hashtable.h>
32 //#include <palacios/svm.h>
37 struct v3_vm_info * v3_config_guest( void * cfg_blob, void * priv_data);
38 int v3_free_config(struct v3_vm_info * vm);
46 struct list_head file_node;
51 typedef struct v3_xml v3_cfg_tree_t;
56 struct list_head file_list;
57 struct hashtable * file_table;
63 struct v3_cfg_file * v3_cfg_get_file(struct v3_vm_info * info, char * tag);
65 char * v3_cfg_val(v3_cfg_tree_t * tree, char * tag);
66 v3_cfg_tree_t * v3_cfg_subtree(v3_cfg_tree_t * tree, char * tag);
67 v3_cfg_tree_t * v3_cfg_next_branch(v3_cfg_tree_t * tree);