From patchwork Sun Dec 4 21:22:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: sjur.brandeland@stericsson.com X-Patchwork-Id: 129194 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 637811007D5 for ; Mon, 5 Dec 2011 08:23:42 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752426Ab1LDVX1 (ORCPT ); Sun, 4 Dec 2011 16:23:27 -0500 Received: from mail-ee0-f46.google.com ([74.125.83.46]:64245 "EHLO mail-ee0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751753Ab1LDVX0 (ORCPT ); Sun, 4 Dec 2011 16:23:26 -0500 Received: by eeaq14 with SMTP id q14so1589448eea.19 for ; Sun, 04 Dec 2011 13:23:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer:mime-version :content-type:content-transfer-encoding; bh=o5ohn3dxMGftScqtPw5pA47r16T18U1gCM0Q/rwuboc=; b=I8rgee/oGvQAto6/B6oOcFmCqZbtMdvIbkCImQB5gEcZ4iscaMofw51+Gpwhq6TKWa 8IS//dopbweBdr4uS46MkUBZ22+cVG1pH/wAwK/C7s/fGuZpA+K4jluPEJy6PAsOTCNP i2Xt1n8Y95a638vu+YQzpmzUZJsQCxkKIPuuY= Received: by 10.14.3.232 with SMTP id 80mr485330eeh.117.1323033805670; Sun, 04 Dec 2011 13:23:25 -0800 (PST) Received: from localhost.localdomain (125.80-203-142.nextgentel.com. [80.203.142.125]) by mx.google.com with ESMTPS id q28sm51604039eea.6.2011.12.04.13.23.18 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 04 Dec 2011 13:23:24 -0800 (PST) From: =?UTF-8?q?Sjur=20Br=C3=A6ndeland?= To: netdev@vger.kernel.org, David Miller Cc: Alexey Orishko , Eric Dumazet , =?UTF-8?q?Sjur=20Br=C3=A6ndeland?= Subject: [PATCHv3 net-next 1/4] if_ether.h: Add IEEE 802.1 Local Experimental Ethertype 1. Date: Sun, 4 Dec 2011 22:22:52 +0100 Message-Id: <1323033775-3496-1-git-send-email-sjur.brandeland@stericsson.com> X-Mailer: git-send-email 1.7.0.4 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add EthType 0x88b5. This Ethertype value is available for public use for prototype and vendor-specific protocol development,as defined in Amendment 802a to IEEE Std 802. Signed-off-by: Sjur Brændeland --- include/linux/if_ether.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index e473003..56d907a 100644 --- a/include/linux/if_ether.h +++ b/include/linux/if_ether.h @@ -79,6 +79,7 @@ #define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */ #define ETH_P_AOE 0x88A2 /* ATA over Ethernet */ #define ETH_P_8021AD 0x88A8 /* 802.1ad Service VLAN */ +#define ETH_P_802_EX1 0x88B5 /* 802.1 Local Experimental 1. */ #define ETH_P_TIPC 0x88CA /* TIPC */ #define ETH_P_8021AH 0x88E7 /* 802.1ah Backbone Service Tag */ #define ETH_P_1588 0x88F7 /* IEEE 1588 Timesync */