search for: pt_hide_dev_cap

Displaying 1 result from an estimated 1 matches for "pt_hide_dev_cap".

2009 Jul 31
8
[PATCH][ioemu] support the assignment of the VF of Intel 82599 10GbE Controller
...lt;dexuan.cui@intel.com> diff --git a/hw/pass-through.c b/hw/pass-through.c index f3d033b..360f2a1 100644 --- a/hw/pass-through.c +++ b/hw/pass-through.c @@ -2408,6 +2408,25 @@ out: return err; } +/* A return value of 1 means the capability should NOT be exposed to guest. */ +static int pt_hide_dev_cap(const struct pci_dev *dev, uint8_t grp_id) +{ + switch (grp_id) + { + case PCI_CAP_ID_EXP: + /* The PCI Express Capability Structure of the VF of Intel 82599 10GbE + * Controller looks trivial, e.g., the PCI Express Capabilities + * Register is 0. We should not try t...