From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f196.google.com (mail-pf0-f196.google.com [209.85.192.196]) by dpdk.org (Postfix) with ESMTP id 438372C36 for ; Sun, 23 Jul 2017 21:08:10 +0200 (CEST) Received: by mail-pf0-f196.google.com with SMTP id q85so8821042pfq.2 for ; Sun, 23 Jul 2017 12:08:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=HEXZ4tHmxxdc1a9DPZE73KRQHgplv+43TWaobPUrVNM=; b=dvpZvQu9YQIxPtrAOP1LFQwNDxpGevJJCRnciG2+EGQixjsC5jWCd2Ohrt+AF4FoRS rgso54htvbb665wH3uuX5h09L6kOXG9dVQ7SsjoFUV3BjfROFfwsU6CpjURzv4wNoLdj MhPuJWpNLEQAh62Dah4X57ZntpxO5rABEhCrO/b7ngl+UkHxiOLRvze99cUFQAy+QeVQ K8dJEu65OYojVE+lXDgwNKrilnUoAFet50ytx9WvfdGwt/7QRrhRUSv0IZ4iUPbPfE7F wlKuGAQr4XmbB71fe2BWwWZYGVZV/DlaFEyWQqh5FV3xmeSkthqcCi02lkGc61TAade6 EU5w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=HEXZ4tHmxxdc1a9DPZE73KRQHgplv+43TWaobPUrVNM=; b=eNd606Q8MlFrXHOLaxF2sR8LKXurbGium9ZsfTGAQ3eMFeJxN/021XslKJieKrKr9z EbOSjCX/9PHUbJR6WNrUqL1EkuFzoAYub15sp/873bX39HPH9rdNVlQbaRZwah6EF45M AypSEsTtTb9Edq/dDZS448Bxu6SToId0mc2xpVJ7eau9gUyxfeUcOXqDfpi2YhRqfhO/ 5l+rFh/88AVpsYCqIYzlktB0GLIbp0hT6ObQxSEuub/8FV2chP/U0a1i++TD5dCPrNcC CzJwwOwdjuvtzirh30ZiZVLY86dBCZKsnKi2kdXwtegyhdhnRAsT9ofV583jZWx8POk9 2/OA== X-Gm-Message-State: AIVw113xC+4coTGM1nDrm+ozWgD6sHcYieja19Dcn6GqH0EgfXaG0Pe2 IOWr+ulBsXNDwYCxHAuMyQ== X-Received: by 10.98.53.134 with SMTP id c128mr14013691pfa.36.1500836889222; Sun, 23 Jul 2017 12:08:09 -0700 (PDT) Received: from localhost.localdomain ([45.63.61.64]) by smtp.gmail.com with ESMTPSA id h125sm16827454pfe.178.2017.07.23.12.08.04 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 23 Jul 2017 12:08:07 -0700 (PDT) From: Yuanhan Liu To: Cian Ferriter Cc: Olivier Matz , dpdk stable Date: Mon, 24 Jul 2017 03:07:26 +0800 Message-Id: <1500836852-3563-1-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-stable] patch 'mbuf: fix VXLAN port in comment' has been queued to LTS release 16.11.3 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jul 2017 19:08:10 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.3 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 07/27/17. So please shout if anyone has objections. Thanks. --yliu --- >>From f28a14808491919917f4cf258b5fd20eca0cd4d3 Mon Sep 17 00:00:00 2001 From: Cian Ferriter Date: Fri, 7 Jul 2017 15:17:40 +0100 Subject: [PATCH] mbuf: fix VXLAN port in comment [ upstream commit 838d6b775bfab436859764ea734cddaf95c7b5fd ] IANA assigns a destination port of 4789 for the VXLAN in the Service Name and Transport Protocol Port Number Registry. This is mentioned in RFC 7348. Fixes: f295a00a2b44 ("mbuf: add definitions of unified packet types") Signed-off-by: Cian Ferriter Acked-by: Olivier Matz --- lib/librte_mbuf/rte_mbuf_ptype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_mbuf/rte_mbuf_ptype.h b/lib/librte_mbuf/rte_mbuf_ptype.h index a3269c4..acd70bb 100644 --- a/lib/librte_mbuf/rte_mbuf_ptype.h +++ b/lib/librte_mbuf/rte_mbuf_ptype.h @@ -341,11 +341,11 @@ extern "C" { * Packet format: * <'ether type'=0x0800 * | 'version'=4, 'protocol'=17 - * | 'destination port'=4798> + * | 'destination port'=4789> * or, * <'ether type'=0x86DD * | 'version'=6, 'next header'=17 - * | 'destination port'=4798> + * | 'destination port'=4789> */ #define RTE_PTYPE_TUNNEL_VXLAN 0x00003000 /** -- 2.7.4