From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-176.mta0.migadu.com (out-176.mta0.migadu.com [91.218.175.176]) (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 7EE784C70 for ; Tue, 20 Aug 2024 00:20:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.176 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724113229; cv=none; b=bnnUm6EGl2GFIlssdjlIwPiAZ7FDuf593uQZ7gxKTOxopCYkc5xGwIoUdzu2A+SB+Ehvv7NKwdELwr8dVssXw6LgogpzVq74IAaQ5X+zcNiKwBP3wuYnFChUfw4vlzhGD4oVNw0DakjZygQcCyZIjVdmLVSSR6PRknXnrv6a+tg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724113229; c=relaxed/simple; bh=VksYsUWOD3KZG1LL5Mp2atFCr6kNFIF9nUPp4+pXJG0=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=bQ3XDkRR4tHTgBRFNTKpXHxkjGt1FD+zmm3+O4Hj4zVGK0zYKiCfdYEA1pkboN8xJtcM2dV0d+hUyOn1JOc7noA9drN8Bkg5CNVFLzXt73mTiqYQ+r9NVj+CFogxVDs9TW1YOP3+SC1ndS1sXqh7C7X9RvI3RU9LxlZIKg6J/i8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=AVNC1OlM; arc=none smtp.client-ip=91.218.175.176 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="AVNC1OlM" Message-ID: <00a9a863-165a-4a8d-9166-dac58e240e61@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1724113225; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=kQaP6+4/ve3SwlwrauuiZeE4uLmF8wFyYGEC2/eT9Zg=; b=AVNC1OlMsxI7lqfIQ2kA9oYDn5egSSqaFv7hsKo/c4h6z90vQ9uKStzLHw4+S17KsMSMcd +o3Gfrfov5vH9pijGj9Ii/aRwDVriC9GRHOQU9uiz7BG+qZkRnrtSFb7jdSkoCj2/orLtx nkl7Mejor73On5M15WQvb3iX3Sn0F+4= Date: Mon, 19 Aug 2024 17:20:17 -0700 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next v2 0/6] selftests/bpf: Various sockmap-related fixes To: Michal Luczaj Cc: Andrii Nakryiko , Eduard Zingerman , Mykola Lysenko , Alexei Starovoitov , Daniel Borkmann , Song Liu , Yonghong Song , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , Shuah Khan , Jakub Sitnicki , bpf@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org References: <20240731-selftest-sockmap-fixes-v2-0-08a0c73abed2@rbox.co> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau In-Reply-To: <20240731-selftest-sockmap-fixes-v2-0-08a0c73abed2@rbox.co> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 7/31/24 3:01 AM, Michal Luczaj wrote: > Series takes care of few bugs and missing features with the aim to improve > the test coverage of sockmap/sockhash. > > Last patch is a create_pair() rewrite making use of > __attribute__((cleanup)) to handle socket fd lifetime. Applied to bpf-next/net. Thanks.