From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:55712 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751373AbdGQQxP (ORCPT ); Mon, 17 Jul 2017 12:53:15 -0400 Subject: Patch "virtio-net: fix leaking of ctx array" has been added to the 4.12-stable tree To: jasowang@redhat.com, davem@davemloft.net, gregkh@linuxfoundation.org, mst@redhat.com Cc: , From: Date: Mon, 17 Jul 2017 18:52:30 +0200 Message-ID: <150031035011377@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 virtio-net: fix leaking of ctx array to the 4.12-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: virtio-net-fix-leaking-of-ctx-array.patch and it can be found in the queue-4.12 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From foo@baz Mon Jul 17 18:46:41 CEST 2017 From: Jason Wang Date: Fri, 7 Jul 2017 19:56:09 +0800 Subject: virtio-net: fix leaking of ctx array From: Jason Wang [ Upstream commit 55281621b6047d2ffb934a0b984ab0cdb1ad1d76 ] Fixes: commit d45b897b11ea ("virtio_net: allow specifying context for rx") Signed-off-by: Jason Wang Acked-by: Michael S. Tsirkin Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/virtio_net.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -2221,6 +2221,7 @@ static int virtnet_find_vqs(struct virtn kfree(names); kfree(callbacks); kfree(vqs); + kfree(ctx); return 0; Patches currently in stable-queue which might be from jasowang@redhat.com are queue-4.12/virtio-net-fix-leaking-of-ctx-array.patch