From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: passt.top; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=hU6wdZ84; dkim-atps=neutral Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by passt.top (Postfix) with ESMTP id BC7715A004C for ; Wed, 25 Sep 2024 10:11:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1727251891; 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; bh=v7bIO5yRsmPUSBjTHDWlXPhw3IZarWrDQnCp08tiTt0=; b=hU6wdZ84YMQQxK+noywUQymoiWID9Xxiij/g63JCQRGcMlPkbQCUIZ+YzaGYvcBpIR06S3 b4DEe60p876kh3XgihQkfGtB6qKmzaMO8/RyKk8iK/r2xj8G2KWNdcLjqJJ3hVG8ONkWNy suqQ5WfigwIbhRuOLS33DQ/fRVpiLuw= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-523-OdzAc9FpNVCmyJSA-fd_qg-1; Wed, 25 Sep 2024 04:11:28 -0400 X-MC-Unique: OdzAc9FpNVCmyJSA-fd_qg-1 Received: from mx-prod-int-03.mail-002.prod.us-west-2.aws.redhat.com (unknown [10.30.177.12]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 376A4193E8F6 for ; Wed, 25 Sep 2024 08:11:28 +0000 (UTC) Received: from lenovo-t14s.redhat.com (unknown [10.39.192.216]) by mx-prod-int-03.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 389E619560AA; Wed, 25 Sep 2024 08:11:26 +0000 (UTC) From: Laurent Vivier To: passt-dev@passt.top Subject: [PATCH v2 0/4] tcp: use csum_iov() in tcp_update_check_tcp[4|6]() Date: Wed, 25 Sep 2024 10:11:21 +0200 Message-ID: <20240925081125.205974-1-lvivier@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.0 on 10.30.177.12 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-ID-Hash: JKZ7YAOACLW74V5LI5GABSSMBKIO5R47 X-Message-ID-Hash: JKZ7YAOACLW74V5LI5GABSSMBKIO5R47 X-MailFrom: lvivier@redhat.com 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: Laurent Vivier 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: For vhost-user, we will need to spread TCP payload over=0D several buffers. To re-use tcp_update_check_tcp[4|6](),=0D provide an iovec rather than a pointer to a buffer.=0D =0D This series updates also csum_iov() and pcap_iov() to=0D add an offset of bytes to skip in the iovec array.=0D =0D It's based on top of "tcp: Use tcp_payload_t rather than tcphdr" that=0D is added in the series for convenience.=0D =0D Laurent Vivier (4):=0D tcp: Use tcp_payload_t rather than tcphdr=0D pcap: Add an offset argument in pcap_iov()=0D checksum: Add an offset argument in csum_iov()=0D tcp: Update TCP checksum using an iovec array=0D =0D checksum.c | 17 +++++--=0D checksum.h | 3 +-=0D pcap.c | 5 +-=0D pcap.h | 2 +-=0D tcp.c | 134 ++++++++++++++++++++++++++++++++++++-------------=0D tcp_buf.c | 29 -----------=0D tcp_internal.h | 29 +++++++++++=0D 7 files changed, 147 insertions(+), 72 deletions(-)=0D =0D --=20=0D 2.46.0=0D =0D