X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fdevices%2Fpci_passthrough.h;fp=palacios%2Finclude%2Fdevices%2Fpci_passthrough.h;h=8ac8580b4eccfb548edaf1261897ba90b1d8d1b4;hb=3a4e54ec208ea3589963b410d2d73292bbc4a8fe;hp=0000000000000000000000000000000000000000;hpb=8a441df14ef65bb559ce090249343ec1dac1a7fc;p=palacios.git diff --git a/palacios/include/devices/pci_passthrough.h b/palacios/include/devices/pci_passthrough.h new file mode 100644 index 0000000..8ac8580 --- /dev/null +++ b/palacios/include/devices/pci_passthrough.h @@ -0,0 +1,36 @@ +/* + * This file is part of the Palacios Virtual Machine Monitor developed + * by the V3VEE Project with funding from the United States National + * Science Foundation and the Department of Energy. + * + * The V3VEE Project is a joint project between Northwestern University + * and the University of New Mexico. You can find out more at + * http://www.v3vee.org + * + * Copyright (c) 2008, Jack Lange + * Copyright (c) 2008, The V3VEE Project + * All rights reserved. + * + * Author: Jack Lange + * + * This is free software. You are permitted to use, + * redistribute, and modify it as specified in the file "V3VEE_LICENSE". + */ + +#ifndef __DEVICES_PCI_PASSTHROUGH_H__ +#define __DEVICES_PCI_PASSTHROUGH_H__ + +#ifdef __V3VEE__ + +struct pci_passthrough_cfg { + char pci_bus_name[32]; + + char name[32]; + uint16_t vendor_id; + uint16_t device_id; +}; + + +#endif + +#endif