diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2013-12-30 02:28:15 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-03 19:17:55 -0500 |
commit | ff1aa430a2fa43189e89c7ddd559f0bee2298288 (patch) | |
tree | 731237d3f796f92aa31b41a8fda7f0e38c707fbb /include/linux/pci.h | |
parent | 7b92b4f61ec49cb1a5813298f35258bd7ecd3667 (diff) |
PCI/MSI: Add pci_msix_vec_count()
This creates an MSI-X counterpart for pci_msi_vec_count(). Device drivers
can use this function to obtain maximum number of MSI-X interrupts the
device supports and use that number in a subsequent call to
pci_enable_msix().
pci_msix_vec_count() supersedes pci_msix_table_size() and returns a
negative errno if device does not support MSI-X interrupts. After this
update, callers must always check the returned value.
The only user of pci_msix_table_size() was the PCI-Express port driver,
which is also updated by this change.
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 86dcf006adcc..cf6125ba649d 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -1169,9 +1169,9 @@ static inline void pci_msi_shutdown(struct pci_dev *dev) | |||
1169 | static inline void pci_disable_msi(struct pci_dev *dev) | 1169 | static inline void pci_disable_msi(struct pci_dev *dev) |
1170 | { } | 1170 | { } |
1171 | 1171 | ||
1172 | static inline int pci_msix_table_size(struct pci_dev *dev) | 1172 | static inline int pci_msix_vec_count(struct pci_dev *dev) |
1173 | { | 1173 | { |
1174 | return 0; | 1174 | return -ENOSYS; |
1175 | } | 1175 | } |
1176 | static inline int pci_enable_msix(struct pci_dev *dev, | 1176 | static inline int pci_enable_msix(struct pci_dev *dev, |
1177 | struct msix_entry *entries, int nvec) | 1177 | struct msix_entry *entries, int nvec) |
@@ -1198,7 +1198,7 @@ int pci_msi_vec_count(struct pci_dev *dev); | |||
1198 | int pci_enable_msi_block(struct pci_dev *dev, int nvec); | 1198 | int pci_enable_msi_block(struct pci_dev *dev, int nvec); |
1199 | void pci_msi_shutdown(struct pci_dev *dev); | 1199 | void pci_msi_shutdown(struct pci_dev *dev); |
1200 | void pci_disable_msi(struct pci_dev *dev); | 1200 | void pci_disable_msi(struct pci_dev *dev); |
1201 | int pci_msix_table_size(struct pci_dev *dev); | 1201 | int pci_msix_vec_count(struct pci_dev *dev); |
1202 | int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec); | 1202 | int pci_enable_msix(struct pci_dev *dev, struct msix_entry *entries, int nvec); |
1203 | void pci_msix_shutdown(struct pci_dev *dev); | 1203 | void pci_msix_shutdown(struct pci_dev *dev); |
1204 | void pci_disable_msix(struct pci_dev *dev); | 1204 | void pci_disable_msix(struct pci_dev *dev); |