Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b85d9905 authored by Doug Ledford's avatar Doug Ledford
Browse files

staging/rdma: remove deprecated ipath driver



This driver was moved to staging for eventual deletion.  Time
to complete that task.

Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent e581d111
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -5795,12 +5795,6 @@ M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
S:	Maintained
F:	net/ipv4/netfilter/ipt_MASQUERADE.c

IPATH DRIVER
M:	Mike Marciniszyn <infinipath@intel.com>
L:	linux-rdma@vger.kernel.org
S:	Maintained
F:	drivers/staging/rdma/ipath/

IPMI SUBSYSTEM
M:	Corey Minyard <minyard@acm.org>
L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
+0 −2
Original line number Diff line number Diff line
@@ -24,6 +24,4 @@ if STAGING_RDMA

source "drivers/staging/rdma/hfi1/Kconfig"

source "drivers/staging/rdma/ipath/Kconfig"

endif
+0 −1
Original line number Diff line number Diff line
# Entries for RDMA_STAGING tree
obj-$(CONFIG_INFINIBAND_HFI1)	+= hfi1/
obj-$(CONFIG_INFINIBAND_IPATH)	+= ipath/
+0 −16
Original line number Diff line number Diff line
config INFINIBAND_IPATH
	tristate "QLogic HTX HCA support"
	depends on 64BIT && NET && HT_IRQ
	---help---
	This is a driver for the deprecated QLogic Hyper-Transport
	IB host channel adapter (model QHT7140),
	including InfiniBand verbs support.  This driver allows these
	devices to be used with both kernel upper level protocols such
	as IP-over-InfiniBand as well as with userspace applications
	(in conjunction with InfiniBand userspace access).
	For QLogic PCIe QLE based cards, use the QIB driver instead.

	If you have this hardware you will need to boot with PAT disabled
	on your x86-64 systems, use the nopat kernel parameter.

	Note that this driver will soon be removed entirely from the kernel.
+0 −37
Original line number Diff line number Diff line
ccflags-y := -DIPATH_IDSTR='"QLogic kernel.org driver"' \
	-DIPATH_KERN_TYPE=0

obj-$(CONFIG_INFINIBAND_IPATH) += ib_ipath.o

ib_ipath-y := \
	ipath_cq.o \
	ipath_diag.o \
	ipath_dma.o \
	ipath_driver.o \
	ipath_eeprom.o \
	ipath_file_ops.o \
	ipath_fs.o \
	ipath_init_chip.o \
	ipath_intr.o \
	ipath_keys.o \
	ipath_mad.o \
	ipath_mmap.o \
	ipath_mr.o \
	ipath_qp.o \
	ipath_rc.o \
	ipath_ruc.o \
	ipath_sdma.o \
	ipath_srq.o \
	ipath_stats.o \
	ipath_sysfs.o \
	ipath_uc.o \
	ipath_ud.o \
	ipath_user_pages.o \
	ipath_user_sdma.o \
	ipath_verbs_mcast.o \
	ipath_verbs.o

ib_ipath-$(CONFIG_HT_IRQ) += ipath_iba6110.o

ib_ipath-$(CONFIG_X86_64) += ipath_wc_x86_64.o
ib_ipath-$(CONFIG_PPC64) += ipath_wc_ppc64.o
Loading