The patch titled drivers/infiniband/hw/nes/nes_cm.c: fix unused var warning has been removed from the -mm tree. Its filename was drivers-infiniband-hw-nes-nes_cmc-fix-unused-var-warning.patch This patch was dropped because an alternative patch was merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: drivers/infiniband/hw/nes/nes_cm.c: fix unused var warning From: Zhenwen Xu <helight.xu@xxxxxxxxx> drivers/infiniband/hw/nes/nes_cm.c:862: warning: unused variable `tmp_addr' The 'tmp_addr' is defined for debug, so it should be defined in CONFIG_INFINIBAND_NES_DEBUG Signed-off-by: Zhenwen Xu <helight.xu@xxxxxxxxx> Cc: Roland Dreier <rolandd@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/infiniband/hw/nes/nes_cm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/infiniband/hw/nes/nes_cm.c~drivers-infiniband-hw-nes-nes_cmc-fix-unused-var-warning drivers/infiniband/hw/nes/nes_cm.c --- a/drivers/infiniband/hw/nes/nes_cm.c~drivers-infiniband-hw-nes-nes_cmc-fix-unused-var-warning +++ a/drivers/infiniband/hw/nes/nes_cm.c @@ -854,8 +854,9 @@ static struct nes_cm_listener *find_list { unsigned long flags; struct nes_cm_listener *listen_node; +#ifdef CONFIG_INFINIBAND_NES_DEBUG __be32 tmp_addr = cpu_to_be32(dst_addr); - +#endif /* walk list and find cm_node associated with this session ID */ spin_lock_irqsave(&cm_core->listen_list_lock, flags); list_for_each_entry(listen_node, &cm_core->listen_list.list, list) { _ Patches currently in -mm which might be from helight.xu@xxxxxxxxx are drivers-infiniband-hw-nes-nes_cmc-fix-unused-var-warning.patch drivers-pci-hotplug-ibmphp_corec-fix-warning-due-to-missing-module_exit.patch drivers-scsi-ncr_d700c-fix-irq-handler-return-type.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