mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-13 15:26:03 +07:00
7c2e11fe2d
Remove qp and mr support from qib and use rdmavt. These two changes cannot be reasonably be split apart into separate patches because they depend on each other in mulitple places. This paves the way to remove even more functions in subsequent patches. Reviewed-by: Ira Weiny <ira.weiny@intel.com> Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
17 lines
660 B
Makefile
17 lines
660 B
Makefile
obj-$(CONFIG_INFINIBAND_QIB) += ib_qib.o
|
|
|
|
ib_qib-y := qib_cq.o qib_diag.o qib_driver.o qib_eeprom.o \
|
|
qib_file_ops.o qib_fs.o qib_init.o qib_intr.o \
|
|
qib_mad.o qib_mmap.o qib_pcie.o qib_pio_copy.o \
|
|
qib_qp.o qib_qsfp.o qib_rc.o qib_ruc.o qib_sdma.o qib_srq.o \
|
|
qib_sysfs.o qib_twsi.o qib_tx.o qib_uc.o qib_ud.o \
|
|
qib_user_pages.o qib_user_sdma.o qib_verbs_mcast.o qib_iba7220.o \
|
|
qib_sd7220.o qib_iba7322.o qib_verbs.o
|
|
|
|
# 6120 has no fallback if no MSI interrupts, others can do INTx
|
|
ib_qib-$(CONFIG_PCI_MSI) += qib_iba6120.o
|
|
|
|
ib_qib-$(CONFIG_X86_64) += qib_wc_x86_64.o
|
|
ib_qib-$(CONFIG_PPC64) += qib_wc_ppc64.o
|
|
ib_qib-$(CONFIG_DEBUG_FS) += qib_debugfs.o
|