From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202602 header.b=cINGsHtL; dkim-atps=neutral Received: from mail.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id 8B8465A0269 for ; Tue, 10 Mar 2026 05:16:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202602; t=1773116167; bh=ZQW1HtoAWhqtewvKlqfgKsJvAELFfMsO4OhdhzF132Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cINGsHtLt/c2Ts3uH7D+K/luOCMSVSc9biOLB8G2YGIMfNPHPvRD1RkMen8SEhQQ5 RtG/x9KBQ8axmAn2avV2cLd4LaGME091m8MxD9VVRyqvdZvyhgJUmTFuYT36iOEuxt nQkgdVyBVZBEUoK3MYpOaDWlspaxN00utvvkVef1jeGobpgkJ2+rB9rQd1ReZrckw0 y4uRpfJx1qkr9gfzeHZQISyRJ0SrsFO6+AUtu/PrDGOyGyWmtEViRHpBNg6F7ib3yd ie0VwOJEiXjOB0YNO+Q0WobTut5nUYTODal0x5jXERQAETqaQL5JalKrrgLJKE2HCd OKwtG04kJJkyg== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4fVLCq5VN8z4wDx; Tue, 10 Mar 2026 15:16:07 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH 2/6] tcp: Remove stale description of port_to_tap field Date: Tue, 10 Mar 2026 15:16:01 +1100 Message-ID: <20260310041605.1322552-3-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260310041605.1322552-1-david@gibson.dropbear.id.au> References: <20260310041605.1322552-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: 4BJQP4PDJ5KRBDPUXPUDT2BCDHT7NYPV X-Message-ID-Hash: 4BJQP4PDJ5KRBDPUXPUDT2BCDHT7NYPV X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: This field was removed in 163dc5f18899 ("Consolidate port forwarding configuration into a common structure"), but the corresponding comment describing it was not. Fix the oversight. Fixes: 163dc5f18899 ("Consolidate port forwarding configuration into a common structure") Signed-off-by: David Gibson --- tcp.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tcp.h b/tcp.h index 384974d1..c9455e85 100644 --- a/tcp.h +++ b/tcp.h @@ -38,7 +38,6 @@ extern bool peek_offset_cap; /** * struct tcp_ctx - Execution context for TCP routines - * @port_to_tap: Ports bound host-side, packets to tap or spliced * @fwd_in: Port forwarding configuration for inbound packets * @fwd_out: Port forwarding configuration for outbound packets * @timer_run: Timestamp of most recent timer run -- 2.53.0