From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:35606 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751499AbdCXIb7 (ORCPT ); Fri, 24 Mar 2017 04:31:59 -0400 Subject: Patch "qla2xxx: Fix memory leak for abts processing" has been added to the 4.10-stable tree To: quinn.tran@cavium.com, gregkh@linuxfoundation.org, himanshu.madhani@cavium.com, nab@linux-iscsi.org Cc: , From: Date: Fri, 24 Mar 2017 09:31:35 +0100 Message-ID: <149034429515551@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled qla2xxx: Fix memory leak for abts processing to the 4.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: qla2xxx-fix-memory-leak-for-abts-processing.patch and it can be found in the queue-4.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From ae940f2c472a62904dc18234de5cf3ed28f195ee Mon Sep 17 00:00:00 2001 From: Quinn Tran Date: Wed, 15 Mar 2017 09:48:44 -0700 Subject: qla2xxx: Fix memory leak for abts processing From: Quinn Tran commit ae940f2c472a62904dc18234de5cf3ed28f195ee upstream. Signed-off-by: Quinn Tran Signed-off-by: Himanshu Madhani Signed-off-by: Nicholas Bellinger Signed-off-by: Greg Kroah-Hartman --- drivers/scsi/qla2xxx/qla_target.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/scsi/qla2xxx/qla_target.c +++ b/drivers/scsi/qla2xxx/qla_target.c @@ -6815,6 +6815,8 @@ qlt_handle_abts_recv_work(struct work_st spin_lock_irqsave(&ha->hardware_lock, flags); qlt_response_pkt_all_vps(vha, (response_t *)&op->atio); spin_unlock_irqrestore(&ha->hardware_lock, flags); + + kfree(op); } void Patches currently in stable-queue which might be from quinn.tran@cavium.com are queue-4.10/qla2xxx-fix-request-queue-corruption.patch queue-4.10/qla2xxx-fix-memory-leak-for-abts-processing.patch