The patch titled cxgb3: fix build error when INET=n has been removed from the -mm tree. Its filename was cxgb3-fix-build-error-when-inet=n.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: cxgb3: fix build error when INET=n From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> cxgb3 uses lro_* functions and selects INET_LRO, but this doesn't help unless INET is already enabled, so make the driver depend on INET also. sge.c:(.text+0x9f09a): undefined reference to `lro_flush_all' sge.c:(.text+0x9f62f): undefined reference to `lro_receive_skb' sge.c:(.text+0x9f8a3): undefined reference to `lro_receive_frags' sge.c:(.text+0x9fbe0): undefined reference to `lro_vlan_hwaccel_receive_skb' sge.c:(.text+0x9ffcd): undefined reference to `lro_vlan_hwaccel_receive_frags' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: Divy Le Ray <divy@xxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/Kconfig~cxgb3-fix-build-error-when-inet=n drivers/net/Kconfig --- a/drivers/net/Kconfig~cxgb3-fix-build-error-when-inet=n +++ a/drivers/net/Kconfig @@ -2408,7 +2408,7 @@ config CHELSIO_T1_NAPI config CHELSIO_T3 tristate "Chelsio Communications T3 10Gb Ethernet support" - depends on PCI + depends on PCI && INET select FW_LOADER select INET_LRO help _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are linux-next.patch dev_set_name-fix-missing-kernel-doc.patch documentation-build-source-files-in-documentation-sub-dir.patch documentation-build-source-files-in-documentation-sub-dir-disable.patch 8390-split-8390-support-into-a-pausing-and-a-non-pausing-driver-core.patch e1000e-make-e1000e-default-to-the-same-kconfig-setting-as-e1000.patch netfilter-conntrack_helper-needs-to-include-rculisth.patch git-scsi-misc-fix-scsi_dh-build-errors.patch git-unionfs.patch uwb-fix-kconfig-causing-undefined-references.patch doc-add-suggestions-about-good-practices-for-maintainers.patch audit-fix-kernel-doc-parameter-notation.patch vmallocinfo-add-numa-information.patch vmallocinfo-add-numa-information-fix.patch flag-parameters-signalfd-fix.patch flag-parameters-eventfd-fix.patch bsdacct-stir-up-comments-around-acct_process.patch profile-likely-unlikely-macros.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html