From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gandalf.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) by passt.top (Postfix) with ESMTPS id CF42D5A0275 for ; Mon, 29 Jan 2024 05:36:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202312; t=1706502959; bh=dBMpVr+gzezSBzoqFHAqHXQLXBEZABwD+dd5uM+kMZA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nYd1J92JeJcIi+Y63uQbMa0W0mvm8Mu3+gYkzPBUqjNUD99S22nUEgcqIzJz35jGI L89tuSASqMESTdLFwvFvTa10/YXRXNFJFIN/RvL7Mda4MuU1lp0+THqg/j9kdSjTLs 5EAILFtRkeAju1Pkv73MBotK8RAucg+ai9QkaAkqFtKRS6yUxI0YFxEKgocP4AdRlr d7hLz8z0lxeLRqtDThox00mU6l794f0wPgs1G4osXPLJUCUAfxfKJuQYoVsbNL7wI/ eDzmZvKwN2w/JzM+Rz2zZ5HslbZvUr+G7haP8Nz9tCYnwlkuQ4zS7CoaIWZR7Z236p 84tjTKDxNUu8g== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4TNb8b622Lz4x5K; Mon, 29 Jan 2024 15:35:59 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH 08/16] tcp_splice: Fix incorrect parameter comment for tcp_splice_connect() Date: Mon, 29 Jan 2024 15:35:49 +1100 Message-ID: <20240129043557.823451-9-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240129043557.823451-1-david@gibson.dropbear.id.au> References: <20240129043557.823451-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: BNCK433FQY6X7GXTACXXR3GBUUIVMIOW X-Message-ID-Hash: BNCK433FQY6X7GXTACXXR3GBUUIVMIOW 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: Both the name and description are wrong. Signed-off-by: David Gibson --- tcp_splice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcp_splice.c b/tcp_splice.c index bdabe411..eee98a30 100644 --- a/tcp_splice.c +++ b/tcp_splice.c @@ -319,7 +319,7 @@ static int tcp_splice_connect_finish(const struct ctx *c, * tcp_splice_connect() - Create and connect socket for new spliced connection * @c: Execution context * @conn: Connection pointer - * @s: Accepted socket + * @sock_conn: Connectable socket * @port: Destination port, host order * * Return: 0 for connect() succeeded or in progress, negative value on error -- 2.43.0