From nobody Sat Apr 11 11:23:10 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CBF5B3B27D2; Wed, 8 Apr 2026 13:08:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775653704; cv=none; b=Q+cp5bJYWd/RJlnIkLmAwv9BqMHVmhnXp0b7nD8G5v0n2DwJVch4Ws0kWR7Wkww+8Mo/BFA85jHGdsLWr+ybh7bVQBOq8ysCd0cf9wF7RUlfVj3QKiJLhklniQTwK4upkuP5CGxFRGe/eVsD3hkUmKBG3dMmTmn2sFGnQiwdG6E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775653704; c=relaxed/simple; bh=EUvdbzYF1Iub7xY0mp83gMzacz/3Ecvi+GE9RR1J0Vo=; h=Subject:To:Cc:From:Date:In-Reply-To:Message-ID:MIME-Version: Content-Type; b=qmoEIuyjJjN+9VhK9iXC7kzaHGIvCpz61wGV5pTjHoxNqJQ7/CZS41eEhg9zaOUPUvu0qnP5FXbSVQ6ZMF3F0UcJMbYAhUjFuScyzJPNkzQcX8IrzW+XOp7vePU02rbNccO3XcyQ6M6fVLwT4QPqL4kJpctWCJRKiyLJrbHCJ78= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=iayaQx0a; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="iayaQx0a" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01380C19421; Wed, 8 Apr 2026 13:08:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1775653704; bh=EUvdbzYF1Iub7xY0mp83gMzacz/3Ecvi+GE9RR1J0Vo=; h=Subject:To:Cc:From:Date:In-Reply-To:From; b=iayaQx0ay8TX9K63bUwMz/OcC10fCwoR+RKCUV8mRzjuypnLWu/3sj9g7cHOCFjey uSZiRt87sKgeR+gkvwoWhK3N3Lo9meKJvPiwxevw3DOvayg8YPRj8cUipb7NtVBQFz nOsB0R1Uv2fJGPwzIghsvKHtY2KFg9Xzspt1DAdk= Subject: Patch "MPTCP: fix lock class name family in pm_nl_create_listen_socket" has been added to the 6.12-stable tree To: gregkh@linuxfoundation.org,kuba@kernel.org,lixiasong1@huawei.com,matttbe@kernel.org,mptcp@lists.linux.dev Cc: From: Date: Wed, 08 Apr 2026 15:07:41 +0200 In-Reply-To: <20260402173309.3282169-2-matttbe@kernel.org> Message-ID: <2026040841-diocese-cheese-a9cb@gregkh> Precedence: bulk X-Mailing-List: mptcp@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-stable: commit X-Patchwork-Hint: ignore Content-Type: text/plain; charset="utf-8" This is a note to let you know that I've just added the patch titled MPTCP: fix lock class name family in pm_nl_create_listen_socket to the 6.12-stable tree which can be found at: http://www.kernel.org/git/?p=3Dlinux/kernel/git/stable/stable-queue.git= ;a=3Dsummary The filename of the patch is: mptcp-fix-lock-class-name-family-in-pm_nl_create_listen_socket.patch and it can be found in the queue-6.12 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. From stable+bounces-233080-greg=3Dkroah.com@vger.kernel.org Thu Apr 2 19:3= 5:28 2026 From: "Matthieu Baerts (NGI0)" Date: Thu, 2 Apr 2026 19:33:10 +0200 Subject: MPTCP: fix lock class name family in pm_nl_create_listen_socket To: stable@vger.kernel.org, gregkh@linuxfoundation.org Cc: MPTCP Upstream , Li Xiasong , "Matthieu Baerts (NGI0)" , Jakub Kicinski Message-ID: <20260402173309.3282169-2-matttbe@kernel.org> From: Li Xiasong commit 7ab4a7c5d969642782b8a5b608da0dd02aa9f229 upstream. In mptcp_pm_nl_create_listen_socket(), use entry->addr.family instead of sk->sk_family for lock class setup. The 'sk' parameter is a netlink socket, not the MPTCP subflow socket being created. Fixes: cee4034a3db1 ("mptcp: fix lockdep false positive in mptcp_pm_nl_crea= te_listen_socket()") Signed-off-by: Li Xiasong Reviewed-by: Matthieu Baerts (NGI0) Link: https://patch.msgid.link/20260319112159.3118874-1-lixiasong1@huawei.c= om Signed-off-by: Jakub Kicinski [ Conflict in pm_kernel.c, because commit 8617e85e04bd ("mptcp: pm: split in-kernel PM specific code") is not in this version, and moves code from pm_netlink.c to pm_kernel.c. ] Signed-off-by: Matthieu Baerts (NGI0) Signed-off-by: Greg Kroah-Hartman --- net/mptcp/pm_netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/mptcp/pm_netlink.c +++ b/net/mptcp/pm_netlink.c @@ -1186,7 +1186,7 @@ static struct lock_class_key mptcp_keys[ static int mptcp_pm_nl_create_listen_socket(struct sock *sk, struct mptcp_pm_addr_entry *entry) { - bool is_ipv6 =3D sk->sk_family =3D=3D AF_INET6; + bool is_ipv6 =3D entry->addr.family =3D=3D AF_INET6; int addrlen =3D sizeof(struct sockaddr_in); struct sockaddr_storage addr; struct sock *newsk, *ssk; Patches currently in stable-queue which might be from matttbe@kernel.org are queue-6.12/mptcp-fix-lock-class-name-family-in-pm_nl_create_listen_socket.p= atch