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=202502 header.b=aZPnURNg; dkim-atps=neutral Received: from mail.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) by passt.top (Postfix) with ESMTPS id 110A85A0624 for ; Tue, 18 Feb 2025 12:04:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202502; t=1739876654; bh=Xg+qDgCbg90KxQ17d8tko83R8Fhd2cpVKsdNLZBeScU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aZPnURNg2aEVEBLjymBcDxeK6oGgivmowFM7sWrIWjfOEszpieNlcgVLywhbjn6xL 2KMfkxioVFUjySzKaae0KROKcHnvhDxpGPrNhTE2VVvo1JELw6BQpOFJ8VCG9l6n+d wSy9pjVwtqO6n7ekvdcIVRoN5WLu5T0YvQn2oChWZGjBXnBtrvQ5HTNVRMUA+xhfga xLR8+RrmL55IsquKJ9hsp28ibc13Xc9tSwaIxvqrykp1MwKwGAeYYoKLLVGweqr028 fnQneYQHchxm55pLfCnJRHHFuOM5izRcdJQx/4lVVhZut+X/IWksy2I5/DZU7AYEb9 f6xARWr95FIew== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4YxxVQ1mSrz4x6n; Tue, 18 Feb 2025 22:04:14 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH 2/4] tcp: Remove spurious prototype for tcp_flow_migrate_shrink_window Date: Tue, 18 Feb 2025 19:59:22 +1100 Message-ID: <20250218085924.2627517-3-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250218085924.2627517-1-david@gibson.dropbear.id.au> References: <20250218085924.2627517-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: XNBD4627AGZEGTRNVDG7Y5BQ7YDGTXTO X-Message-ID-Hash: XNBD4627AGZEGTRNVDG7Y5BQ7YDGTXTO 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 function existed in drafts of the migration code, but not the final version. Get rid of the prototype. Signed-off-by: David Gibson --- tcp_conn.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tcp_conn.h b/tcp_conn.h index 53887c0e..8a15b08d 100644 --- a/tcp_conn.h +++ b/tcp_conn.h @@ -233,7 +233,6 @@ bool tcp_flow_defer(const struct tcp_tap_conn *conn); int tcp_flow_repair_on(struct ctx *c, const struct tcp_tap_conn *conn); int tcp_flow_repair_off(struct ctx *c, const struct tcp_tap_conn *conn); -int tcp_flow_migrate_shrink_window(int fidx, const struct tcp_tap_conn *conn); int tcp_flow_migrate_source(int fd, struct tcp_tap_conn *conn); int tcp_flow_migrate_source_ext(int fd, int fidx, const struct tcp_tap_conn *conn); -- 2.48.1