From mboxrd@z Thu Jan 1 00:00:00 1970 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 34869EEC0; Tue, 2 Sep 2025 18:25:17 +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=1756837518; cv=none; b=dINYxLrSq3QQcwWu3w/k8symXfSQ3RafbQbCbuMd4hcsR38rltmY0pPdFe50Qx97ntFVafCTZEFmzCUEhHyGp4d4H/LPy8RsQcfxDvzJ2d7q9YhLf+yuMmnt+Ud6Tot2cS7ytXO3HctdhTTNpSTvJCBE+oB5GDOVXU7jpHXE5ew= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756837518; c=relaxed/simple; bh=uf3Jan+REW+5REqhi+Xk9FuJgqRz2rm4fjx87sB6+Xs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=PLfyLLGl01MB3aSymElbmiGlmhPjVfBLrFU95Dqep4PTdoZPT4ahpT+LYcMHDW4sb8FcYWXXy7Omul5IasdnHBQKkYYEL2PzIH1+DE7+wnfBquL1bVal3KCV7VGaVaITCxm7ic88EU43R6C9toXAsAhCyuGnERa5FSTYxcCvIVM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43FE5C4CEF6; Tue, 2 Sep 2025 18:25:14 +0000 (UTC) Date: Tue, 2 Sep 2025 19:25:11 +0100 From: Catalin Marinas To: Jakub Kicinski Cc: Matthieu Baerts , mptcp@lists.linux.dev, Mat Martineau , Geliang Tang , "David S. Miller" , Eric Dumazet , Paolo Abeni , Simon Horman , Jonathan Corbet , Shuah Khan , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-kselftest@vger.kernel.org, Eric Biggers , Christoph Paasch , Gang Yan Subject: Re: [PATCH net-next 0/6] mptcp: misc. features for v6.18 Message-ID: References: <20250901-net-next-mptcp-misc-feat-6-18-v1-0-80ae80d2b903@kernel.org> <20250902072600.2a9be439@kernel.org> <834238b4-3549-4062-a29b-bf9c5aefa30f@kernel.org> <20250902082759.1e7813b8@kernel.org> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250902082759.1e7813b8@kernel.org> On Tue, Sep 02, 2025 at 08:27:59AM -0700, Jakub Kicinski wrote: > On Tue, 2 Sep 2025 16:51:47 +0200 Matthieu Baerts wrote: > > It is unclear why a second scan is needed and only the second one caught > > something. Was it the same with the strange issues you mentioned in > > driver tests? Do you think I should re-add the second scan + cat? > > Not sure, cc: Catalin, from experience it seems like second scan often > surfaces issues the first scan missed. It's some of the kmemleak heuristics to reduce false positives. It does a checksum of the object during scanning and only reports a leak if the checksum is the same in two consecutive scans. -- Catalin