Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=aDJiri1w; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=RfsCn/ax Received: by mail.netbsd.org (Postfix, from userid 605) id 3A91584F67; Fri, 19 Apr 2024 05:04:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713503048; bh=CQD7bii77Ets2mvrmq9FVMmdaN2tJDAHCHSwB02eiYw=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=aDJiri1wchTk9KmP/qK4rMXyIm/mi54BxFKIasXMP5rDM/UTshi+uvNY220wTty0J uf9gtsB1GFrVbvrNpoHWOJrGwOqy1h8Rv5M6fwaHI0Wh9wfefSWvP9x02U56Bpnob/ XcIhkb6TFNMglwtzPTahEYd6LdtOIGiBY63iMhis= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2419684F66 for ; Fri, 19 Apr 2024 05:04:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ptDvpLPW-42Y for ; Fri, 19 Apr 2024 05:04:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B554684D96 for ; Fri, 19 Apr 2024 05:04:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713503046; bh=CQD7bii77Ets2mvrmq9FVMmdaN2tJDAHCHSwB02eiYw=; h=Date:From:Subject:To:Reply-To; b=RfsCn/axPch/JUPVBJvl0tayTQz8w2lQ+3Kk7M3/OMSUbg3Eme8VhhGKZJ9qF3yw/ RwiYMQ4pfTI3GxgaMrtfAGVHAnJ8H0t5td4cTRxrIJRhOJqvD91U6zDf54kuGHM49k GNj/gkqOca3kAEMiB5jFZXloOjKEWUafK1mz1EMY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id A7B05FA2C; Fri, 19 Apr 2024 05:04:06 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Fri, 19 Apr 2024 05:04:06 +0000 From: "Ryota Ozaki" Subject: CVS commit: src/sys/netinet6 To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240419050406.A7B05FA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Ryota Ozaki" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: ozaki-r Date: Fri Apr 19 05:04:06 UTC 2024 Modified Files: src/sys/netinet6: frag6.c Log Message: frag6: fix calculation of fragment length Because of the miscalculation, 32 bytes fragmented IPv6 packets have been wrongly dropped. See https://mail-index.netbsd.org/tech-net/2024/04/14/msg008741.html for more details. Patch from Yasuyuki KOZAKAI (with minor tweaks) To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/sys/netinet6/frag6.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.