/* * PCI Backend - Data structures for special overlays for broken devices. * * Ryan Wilson * Chris Bookholt */ #ifndef __XEN_PCIBACK_CONF_SPACE_QUIRKS_H__ #define __XEN_PCIBACK_CONF_SPACE_QUIRKS_H__ #include #include struct xen_pcibk_config_quirk { struct list_head quirks_list; struct pci_device_id devid; struct pci_dev *pdev; }; int xen_pcibk_config_quirks_add_field(struct pci_dev *dev, struct config_field *field); int xen_pcibk_config_quirks_remove_field(struct pci_dev *dev, int reg); int xen_pcibk_config_quirks_init(struct pci_dev *dev); void xen_pcibk_config_field_free(struct config_field *field); int xen_pcibk_config_quirk_release(struct pci_dev *dev); int xen_pcibk_field_is_dup(struct pci_dev *dev, unsigned int reg); #endif form'>
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
n value='3' selected='selected'>3
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2017-01-26 12:54:50 -0500
committerDavid S. Miller <davem@davemloft.net>2017-01-26 12:54:50 -0500
commit086cb6a41264b5af33928b82e09ae7f0f8bbc291 (patch)
treeff81c453913fb6bbda167bf374c7d2a3c988729b /include/math-emu
parent214767faa2f31285f92754393c036f13b55474a6 (diff)
parentb2c11e4b9536ebab6b39929e1fe15f57039ab445 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
Pablo Neira Ayuso says: ==================== Netfilter fixes for net The following patchset contains a large batch with Netfilter fixes for your net tree, they are: 1) Two patches to solve conntrack garbage collector cpu hogging, one to remove GC_MAX_EVICTS and another to look at the ratio (scanned entries vs. evicted entries) to make a decision on whether to reduce or not the scanning interval. From Florian Westphal. 2) Two patches to fix incorrect set element counting if NLM_F_EXCL is is not set. Moreover, don't decrenent set->nelems from abort patch if -ENFILE which leaks a spare slot in the set. This includes a patch to deconstify the set walk callback to update set->ndeact. 3) Two fixes for the fwmark_reflect sysctl feature: Propagate mark to reply packets both from nf_reject and local stack, from Pau Espin Pedrol. 4) Fix incorrect handling of loopback traffic in rpfilter and nf_tables fib expression, from Liping Zhang. 5) Fix oops on stateful objects netlink dump, when no filter is specified. Also from Liping Zhang. 6) Fix a build error if proc is not available in ipt_CLUSTERIP, related to fix that was applied in the previous batch for net. From Arnd Bergmann. 7) Fix lack of string validation in table, chain, set and stateful object names in nf_tables, from Liping Zhang. Moreover, restrict maximum log prefix length to 127 bytes, otherwise explicitly bail out. 8) Two patches to fix spelling and typos in nf_tables uapi header file and Kconfig, patches from Alexander Alemayhu and William Breathitt Gray. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/math-emu')