From patchwork Sun Dec 4 10:10:47 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: 129132 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 D7F771007D4 for ; Sun, 4 Dec 2011 21:11:28 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752742Ab1LDKLP (ORCPT ); Sun, 4 Dec 2011 05:11:15 -0500 Received: from mail-ey0-f174.google.com ([209.85.215.174]:63713 "EHLO mail-ey0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752492Ab1LDKLJ (ORCPT ); Sun, 4 Dec 2011 05:11:09 -0500 Received: by eaak14 with SMTP id k14so3546710eaa.19 for ; Sun, 04 Dec 2011 02:11:08 -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:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=o5ohn3dxMGftScqtPw5pA47r16T18U1gCM0Q/rwuboc=; b=dN1caS7mFBpP+z6itcMdmqkilucE/RLNmWKwjgdpFacPm6aBRs4cXenrWC1f7H1C85 KM9Cfz2nduts2o+4jCw3RmMCpAqZjSHkgC4DxX4Tiao3PJpT156GR+6RY2w/geLB5H8W LgYOuS9yiDqixNisrqsoAY1dLP+wGtQ++kbPY= Received: by 10.213.12.194 with SMTP id y2mr317654eby.86.1322993467869; Sun, 04 Dec 2011 02:11:07 -0800 (PST) Received: from localhost.localdomain (125.80-203-142.nextgentel.com. [80.203.142.125]) by mx.google.com with ESMTPS id q28sm45772369eea.6.2011.12.04.02.11.06 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 04 Dec 2011 02:11:07 -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: [PATCHv2 net-next 1/4] if_ether.h: Add IEEE 802.1 Local Experimental Ethertype 1. Date: Sun, 4 Dec 2011 11:10:47 +0100 Message-Id: <1322993450-8802-2-git-send-email-sjur.brandeland@stericsson.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1322993450-8802-1-git-send-email-sjur.brandeland@stericsson.com> References: <1322993450-8802-1-git-send-email-sjur.brandeland@stericsson.com> 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 */