X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_dev_mgr.h;h=eeb0e5625d9782043bfe173314c6d8c73a994b55;hb=020108512c01b113a5e8cca88a8facdc5ba5488a;hp=383aebd6607b05f8ad7c4054d56eaad4331c2120;hpb=1e9ba89f90e30c3221006251fc75918071868ce3;p=palacios.releases.git diff --git a/palacios/include/palacios/vmm_dev_mgr.h b/palacios/include/palacios/vmm_dev_mgr.h index 383aebd..eeb0e56 100644 --- a/palacios/include/palacios/vmm_dev_mgr.h +++ b/palacios/include/palacios/vmm_dev_mgr.h @@ -29,7 +29,6 @@ #include #include #include -#include struct v3_vm_info; @@ -103,11 +102,17 @@ int V3_init_devices(); int V3_deinit_devices(); +#ifdef V3_CONFIG_KEYED_STREAMS +#include +#endif + struct v3_device_ops { int (*free)(void * private_data); +#ifdef V3_CONFIG_KEYED_STREAMS int (*checkpoint)(struct vm_device *dev, v3_keyed_stream_t stream); int (*restore)(struct vm_device *dev, v3_keyed_stream_t stream); +#endif }; @@ -172,21 +177,24 @@ struct v3_dev_blk_ops { int (*write)(uint8_t * buf, uint64_t lba, uint64_t num_bytes, void * private_data); }; + +struct v3_dev_net_ops_cfg{ + void * frontend_data; + char * fnt_mac; + int quote; + int poll; /* need poll? */ +}; + struct v3_dev_net_ops { /* Backend implemented functions */ - int (*send)(uint8_t * buf, uint32_t count, void * private_data); - void (*start_rx)(void * back_data); - void (*stop_rx)(void * back_data); + int (*send)(uint8_t * buf, uint32_t len, void * private_data); /* Frontend implemented functions */ - int (*recv)(uint8_t * buf, uint32_t count, void * frnt_data); - void (*poll)(struct v3_vm_info * vm, void * frnt_data); - void (*start_tx)(void * frnt_data); - void (*stop_tx)(void * frnt_data); + int (*recv)(uint8_t * buf, uint32_t len, void * frnt_data); + int (*poll)(int quote, void * frnt_data); /* This is ugly... */ - void * frontend_data; - char fnt_mac[ETH_ALEN]; + struct v3_dev_net_ops_cfg config; }; struct v3_dev_console_ops {