From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.173]) (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 9324B2185A0 for ; Tue, 15 Apr 2025 16:53:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744736041; cv=none; b=iuQ/CsqsA0yOK/8WITW4o2kvi89ghpSBTgCjockleAqNLs6GPxNYmf3FKSP/EOwRWxsyN6IYmEPCialMzCJ/xphgqBXFM+PbRRNP0N2UZvbi1WY0FCDQJ2L6YITahP1O7FjEjXYR0KI6jQVrJnoQ5XTIJwe894p2iy/kt2ES5HM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744736041; c=relaxed/simple; bh=/UyV+QXEQ8haLX9huHlE3y+B0oeS61wRn0lhjcLxYKQ=; h=MIME-Version:Date:Content-Type:From:Message-ID:Subject:To:Cc: In-Reply-To:References; b=JzHdMBT43+an4IjKk7O9nlvSIS5jPFrax5lKyhA2vqnKNRfx9osZEh0DDiLZLZtzc2q+xBTT+pvcdEfGptwb2TTauCLhbyheRXVdRu1dZ7q3gMmqsRuKZnQ6BE6Kan8kd6vuyY/JZywfFEbN8do94Hgk6ujN2F1QLblNSK6Wr4g= 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=VzxOD8Yn; arc=none smtp.client-ip=95.215.58.173 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="VzxOD8Yn" Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1744736027; 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=/UyV+QXEQ8haLX9huHlE3y+B0oeS61wRn0lhjcLxYKQ=; b=VzxOD8YnS9wDma3D6iT/jLlob6zweEEO3tFLRs3caMkZwuOtAcf99bjr6dGU9jxpzECawn M5vw4IYbvk+vGqUB0QYA+wyVgMEn1RIzDU8BzPbeaSAtc9aOBWjhHEaldcJeB4T7fQyNXo FznA1ikLV7AuLTAKdS+jWXCCXSjC1h4= Date: Tue, 15 Apr 2025 16:53:45 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Jiayuan Chen" Message-ID: <3cb523bc8eb334cb420508a84f3f1d37543f4253@linux.dev> TLS-Required: No Subject: Re: [PATCH bpf] selftests/bpf: remove sockmap_ktls disconnect_after_delete test To: "Ihor Solodrai" , ast@kernel.org, andrii@kernel.org, daniel@iogearbox.net, eddyz87@gmail.com Cc: bpf@vger.kernel.org, netdev@vger.kernel.org, kuba@kernel.org, pabeni@redhat.com, mykolal@fb.com, kernel-team@meta.com In-Reply-To: <20250415163332.1836826-1-ihor.solodrai@linux.dev> References: <20250415163332.1836826-1-ihor.solodrai@linux.dev> X-Migadu-Flow: FLOW_OUT April 16, 2025 at 24:33, "Ihor Solodrai" wrote: >=20 >=20"sockmap_ktls disconnect_after_delete" test has been failing on BPF C= I > after recent merges from netdev: > * https://github.com/kernel-patches/bpf/actions/runs/14458537639 > * https://github.com/kernel-patches/bpf/actions/runs/14457178732 > It happens because disconnect has been disabled for TLS [1], and it > renders the test case invalid. Remove it from the suite. > [1] https://lore.kernel.org/netdev/20250404180334.3224206-1-kuba@kernel= .org/ > Signed-off-by: Ihor Solodrai Reviewed-by: Jiayuan Chen The original selftest patch used disconnect to re-produce the endless loop caused by tcp_bpf_unhash, which has already been removed. I hope this doesn't conflict with bpf-next... Thanks.