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 4FA8427A90A for ; Wed, 9 Jul 2025 09:03:14 +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=1752051795; cv=none; b=rjxnCGZZ1DLvHX5eFXI6WQEgSUwJrR1WdjPvEGG01PDBuGK9DL1RR9+pZnzC/6LH+UN9Wsdbb78ymfLpQA6E2UbBU51tPORyRFhJAH4D8kOzQoiCMqN1a16ZKL/fLVs6OgeJ4nYe0sQD6k1r3OhhWlHigwr4VgT9Ix9dJmh9YIc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752051795; c=relaxed/simple; bh=xFtFNX/DlHX/+CSdrNQjnXsS0JV3DW/uHQEalrphf5E=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=EJ0vYZKmH2mDKoNB67pGwcWJce+68UrgGP7bNwSkU8CW38GWNe8KjDiUaH3hvq06cGWEntB7Ni2e1ClCgPSUc9WsVmUyJO1tQfbWTyN3Q5b4+uWO6BShQL9tO1xJjcGjSdav4ATZW7dG2JMalaMP9hf22dtxIlC9taHfPQ4ELNY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ICNOyLZL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ICNOyLZL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 620DBC4CEEF; Wed, 9 Jul 2025 09:03:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752051794; bh=xFtFNX/DlHX/+CSdrNQjnXsS0JV3DW/uHQEalrphf5E=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ICNOyLZL7H6G6g58W7/9Qna6VrtrsBmVyQurn9UxBXQZ5RccyUeepbjn0x2zSJzm+ BKGvUk3XUwFRmeyo+5kX+a0mQMuX8/mmTQfBp7S1Dlmo5EV38bAY6kRD/yj6Vr6kvc BSI4ixGXRjnokChtYRVk1o+kElsyGnZiXekX0OwfHE+/vVMbXiV1tawBPJiTLIKPCm NFzbXI8opJ8AyCW5sR9YhCw+LpzX7U9ep4rb1bGlLP7aFcF6YSExcdd87idosqm9ix Ff57etJtLnNfkKn/PbWg6IW7zC8JrEQzKdJeQB0eKtemzDi4XQrxO7pbvOAmAByj8Q cbNa0VOS3oAaQ== Date: Wed, 9 Jul 2025 10:03:11 +0100 From: Simon Horman To: Matt Johnston Cc: Jeremy Kerr , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org Subject: Re: [PATCH net-next v3 1/8] net: mctp: mctp_test_route_extaddr_input cleanup Message-ID: <20250709090311.GP452973@horms.kernel.org> References: <20250709-mctp-bind-v3-0-eac98bbf5e95@codeconstruct.com.au> <20250709-mctp-bind-v3-1-eac98bbf5e95@codeconstruct.com.au> Precedence: bulk X-Mailing-List: netdev@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: <20250709-mctp-bind-v3-1-eac98bbf5e95@codeconstruct.com.au> On Wed, Jul 09, 2025 at 04:31:02PM +0800, Matt Johnston wrote: > The sock was not being released. Other than leaking, the stale socket > will conflict with subsequent bind() calls in unrelated MCTP tests. > > Fixes: 11b67f6f22d6 ("net: mctp: test: Add extaddr routing output test") Hi Matt, What I assume is that commit seems to have a different hash in net-next. Fixes: 46ee16462fed ("net: mctp: test: Add extaddr routing output test") > Signed-off-by: Matt Johnston > > --- > Added in v3. The problem was introduced in current net-next so > this patch isn't needed in the stable tree. Ack, thanks for noting that. ...