From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH net-next 2/2] bonding: use the correct ether type for alb Date: Fri, 14 Mar 2014 14:29:35 -0400 (EDT) Message-ID: <20140314.142935.1237930025090619830.davem@davemloft.net> References: <1394710918-29540-1-git-send-email-vfalico@redhat.com> <1394710918-29540-3-git-send-email-vfalico@redhat.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, fubar@us.ibm.com, andy@greyhouse.net To: vfalico@redhat.com Return-path: Received: from shards.monkeyblade.net ([149.20.54.216]:38378 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756001AbaCNS3j (ORCPT ); Fri, 14 Mar 2014 14:29:39 -0400 In-Reply-To: <1394710918-29540-3-git-send-email-vfalico@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: From: Veaceslav Falico Date: Thu, 13 Mar 2014 12:41:58 +0100 > @@ -1005,7 +1005,7 @@ static void alb_send_lp_vid(struct slave *slave, u8 mac_addr[], > memset(&pkt, 0, size); > ether_addr_copy(pkt.mac_dst, mac_addr); > ether_addr_copy(pkt.mac_src, mac_addr); > - pkt.type = cpu_to_be16(ETH_P_LOOP); > + pkt.type = cpu_to_be16(ETH_P_LOOPBACK); Had this really never worked properly at all? It's been this way since the beginning of GIT history, and I imagine since the learning packet code even existed.