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 7D4BB136E1A; Fri, 24 May 2024 23:18:02 +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=1716592684; cv=none; b=WguL9dba4NG8MnyMdrhnCwU8UBT/hfHuYBUDYU41Or0oyTdMSPxaMfBoIgr7o7+Kdx+YITbe2R2lGt9ihqCxBV5x2cAdgbkjuryEgCNewjCaXOSNfU+jn8VNA3MTQ6h2ITqz3YdyY6rBRkxPDxtWVNe93mTj0W92AnPLuLOB37g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716592684; c=relaxed/simple; bh=tpFaKCOIV9PcRpCTO60vB8YsIGsGp8WbBEOft3JKm5U=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=lqBsxkJT7Ng5VndJOVcXE+Z6VaWpqyCCeRThs2VB8zB751cTo4vrhovTSdBSZavoejWSOk2rsJMFJ9dw/q1xHmSSjBTQVJ8A/G0j++RzU7Y3AhaHpKrdYw0/mB7hRz/Vvy8Knb86qukGThE5wAa+uOIdP9OE0TLrbh2RCslOLhI= 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=ZaMPS2xm; 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="ZaMPS2xm" X-Envelope-To: geliang@kernel.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1716592680; 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=Wj029Rul2C7cYgL9U1sN/AZT2h3s365WijrlJpHTjKk=; b=ZaMPS2xmWUrSogSqvsos42KmNEDyCOJgAe29wvFDHDErrqylvUAasMONs0nV2SuySBR8Mq nwnViihRqynk2+SJ2nusdGsi8bWVnErDNBuIHyrhXB8kF7iDw7qogkPedTcEgMjAmjUAS2 c9IXsBG9PxjiEHhJtswMEfcUFiS5Lns= X-Envelope-To: andrii@kernel.org X-Envelope-To: eddyz87@gmail.com X-Envelope-To: mykolal@fb.com X-Envelope-To: ast@kernel.org X-Envelope-To: daniel@iogearbox.net X-Envelope-To: song@kernel.org X-Envelope-To: yonghong.song@linux.dev X-Envelope-To: john.fastabend@gmail.com X-Envelope-To: kpsingh@kernel.org X-Envelope-To: sdf@google.com X-Envelope-To: haoluo@google.com X-Envelope-To: jolsa@kernel.org X-Envelope-To: shuah@kernel.org X-Envelope-To: tanggeliang@kylinos.cn X-Envelope-To: bpf@vger.kernel.org X-Envelope-To: linux-kselftest@vger.kernel.org Message-ID: <910671bd-a1d7-452a-8626-6b8d3b320de8@linux.dev> Date: Fri, 24 May 2024 16:17:51 -0700 Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next v4 4/6] selftests/bpf: Use start_server_str in bpf_tcp_ca To: Geliang Tang 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 , Geliang Tang , bpf@vger.kernel.org, linux-kselftest@vger.kernel.org References: <7c462740879edc7356608e392a1a7b736af82bbd.1716520609.git.tanggeliang@kylinos.cn> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau Content-Language: en-US In-Reply-To: <7c462740879edc7356608e392a1a7b736af82bbd.1716520609.git.tanggeliang@kylinos.cn> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 5/23/24 8:21 PM, Geliang Tang wrote: > From: Geliang Tang > > This patch uses new helper start_server_str() in do_test() in bpf_tcp_ca.c > to accept a struct network_helper_opts argument instead of using > start_server() and settcpca(). Then change the type of the first paramenter I think it missed to replace the start_server()+settcpca() usage in test_dctcp_fallback().