From patchwork Tue Jun 16 23:27:33 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 137181 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 64D7648A0819 for ; Tue, 16 Jun 2026 23:28:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 64D7648A0819 X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from sonata.ens-lyon.org (sonata.ens-lyon.org [140.77.166.138]) by sourceware.org (Postfix) with ESMTPS id 381F648A160C for ; Tue, 16 Jun 2026 23:27:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 381F648A160C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bounce.ens-lyon.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 381F648A160C Authentication-Results: sourceware.org; arc=none smtp.remote-ip=140.77.166.138 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1781652455; cv=none; b=UtInzcKpkRF0w6M5llBQGhYf5tr74VsvZ2S3L5/9iMyrI02JGbPBaYRuZgpwddKTchukuLdDMaQ5tk5sEsLY5OYNAnY+fiD7uqP0icy0Ky3CT5lo6cgf4FNU0hU3jZUy/1j+BAUlXWaG30ZdVQNN24vYYtj3ovxBhRKbhF0oxSQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1781652455; c=relaxed/simple; bh=gFmjQUd9GWrtMm1TAzNQ5R8Wik3k7DQEHDRquM8Bkes=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=nFbPuMbVzHCJpyRi+yNg08iORylvdRJAzOKDfNWrvkIh5JCZzTWAXvCyKRNNIEnM6+umJh1d4y8pRWXWZLsQ0dfrLuDR/nvlXkQ+DAUNVxI4t3Cbii+uqxIXFshhz5ogmC0ldwlf+nv8tAL7BUpTWvwRxfsISizb5njJGTrN4k8= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 381F648A160C Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 42919A0326; Wed, 17 Jun 2026 01:27:34 +0200 (CEST) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jfT3EpK1Pwcd; Wed, 17 Jun 2026 01:27:34 +0200 (CEST) Received: from end (aamiens-653-1-40-48.w83-192.abo.wanadoo.fr [83.192.199.48]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 1DD69A0267; Wed, 17 Jun 2026 01:27:34 +0200 (CEST) Received: from samy by end with local (Exim 4.99.4) (envelope-from ) id 1wZdBt-00000003AHh-26Uv; Wed, 17 Jun 2026 01:27:33 +0200 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd,commited] hurd: Fix ETH_P_PUP Date: Wed, 17 Jun 2026 01:27:33 +0200 Message-ID: <20260616232733.754510-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.53.0 MIME-Version: 1.0 X-Spam-Status: No, score=-12.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_PBL, SPF_HELO_PASS, SPF_PASS, TXREP shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces~patchwork=sourceware.org@sourceware.org According to IANA, PUP is 0200 --- sysdeps/mach/hurd/net/if_ether.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sysdeps/mach/hurd/net/if_ether.h b/sysdeps/mach/hurd/net/if_ether.h index 91d326b7d7..88b8d03f35 100644 --- a/sysdeps/mach/hurd/net/if_ether.h +++ b/sysdeps/mach/hurd/net/if_ether.h @@ -34,8 +34,7 @@ */ #define ETH_P_LOOP 0x0060 /* Ethernet Loopback packet */ -#define ETH_P_ECHO 0x0200 /* Ethernet Echo packet */ -#define ETH_P_PUP 0x0400 /* Xerox PUP packet */ +#define ETH_P_PUP 0x0200 /* Xerox PUP packet */ #define ETH_P_IP 0x0800 /* Internet Protocol packet */ #define ETH_P_X25 0x0805 /* CCITT X.25 */ #define ETH_P_ARP 0x0806 /* Address Resolution packet */