Message ID | 20220103142053.046633087@linuxfoundation.org |
---|---|
State | Superseded |
Headers | show
Return-Path: <stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ADDFDC43217 for <stable@archiver.kernel.org>; Mon, 3 Jan 2022 14:27:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233600AbiACO1K (ORCPT <rfc822;stable@archiver.kernel.org>); Mon, 3 Jan 2022 09:27:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233684AbiACO0P (ORCPT <rfc822;stable@vger.kernel.org>); Mon, 3 Jan 2022 09:26:15 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 57886C0613A1; Mon, 3 Jan 2022 06:26:15 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id ECD6661120; Mon, 3 Jan 2022 14:26:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C047DC36AED; Mon, 3 Jan 2022 14:26:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1641219974; bh=jED4MMMF8uJ7RjfVPWjHWnawzmPhyXcRoRLQ81V70nw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GVsDvi6n5bdO4DGDly2LXcwgtb70lItGgEMnWeJkvCDs3PAzpahHGwd99HbE1Dk1M ac+ABDg9sunNGy2FQz4yZbW3giWzyJrKyRx/WXHu2CkrqiEXWLiWv+8mBs4HqX0bQJ mKf9+IP0xggKmFvt1y4AqZa2E1roLNZXonbzwJos= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Muchun Song <songmuchun@bytedance.com>, Cong Wang <cong.wang@bytedance.com>, Fam Zheng <fam.zheng@bytedance.com>, Jakub Kicinski <kuba@kernel.org> Subject: [PATCH 4.19 27/27] net: fix use-after-free in tw_timer_handler Date: Mon, 3 Jan 2022 15:24:07 +0100 Message-Id: <20220103142053.046633087@linuxfoundation.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220103142052.162223000@linuxfoundation.org> References: <20220103142052.162223000@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c @@ -1955,6 +1955,10 @@ static int __init inet_init(void) ip_init(); + /* Initialise per-cpu ipv4 mibs */ + if (init_ipv4_mibs()) + panic("%s: Cannot init ipv4 mibs\n", __func__); + /* Setup TCP slab cache for open requests. */ tcp_init(); @@ -1983,12 +1987,6 @@ static int __init inet_init(void) if (init_inet_pernet_ops()) pr_crit("%s: Cannot init ipv4 inet pernet ops\n", __func__); - /* - * Initialise per-cpu ipv4 mibs - */ - - if (init_ipv4_mibs()) - pr_crit("%s: Cannot init ipv4 mibs\n", __func__); ipv4_proc_init();