From patchwork Thu Oct 9 00:34:55 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Miller X-Patchwork-Id: 3426 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.176.167]) by ozlabs.org (Postfix) with ESMTP id BE5C8DDF28 for ; Thu, 9 Oct 2008 11:36:03 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755949AbYJIAfX (ORCPT ); Wed, 8 Oct 2008 20:35:23 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757617AbYJIAfV (ORCPT ); Wed, 8 Oct 2008 20:35:21 -0400 Received: from 74-93-104-97-Washington.hfc.comcastbusiness.net ([74.93.104.97]:52850 "EHLO sunset.davemloft.net" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1757610AbYJIAfU (ORCPT ); Wed, 8 Oct 2008 20:35:20 -0400 Received: from localhost (localhost [127.0.0.1]) by sunset.davemloft.net (Postfix) with ESMTP id 20D29C8C18B; Wed, 8 Oct 2008 17:34:56 -0700 (PDT) Date: Wed, 08 Oct 2008 17:34:55 -0700 (PDT) Message-Id: <20081008.173455.97336442.davem@davemloft.net> To: buytenh@wantstofly.org Cc: netdev@vger.kernel.org Subject: Re: [PATCHv3,GIT 0/5] support for DSA hardware ethernet switch chips From: David Miller In-Reply-To: <20081008.172947.250946906.davem@davemloft.net> References: <20081007234342.GA23200@xi.wantstofly.org> <20081008.172947.250946906.davem@davemloft.net> X-Mailer: Mew version 6.1 on Emacs 22.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: David Miller Date: Wed, 08 Oct 2008 17:29:47 -0700 (PDT) > From: Lennert Buytenhek > Date: Wed, 8 Oct 2008 01:43:42 +0200 > > > This is version 3 of the DSA patch set, with various improvements > > over v2: > ... > > Lennert Buytenhek (5): > > [NET] Distributed Switch Architecture protocol support > > [NET] dsa: add support for original DSA tagging format > > [NET] dsa: add support for the Marvell 88E6131 switch chip > > [NET] dsa: add support for Trailer tagging format > > [NET] dsa: add support for the Marvell 88E6060 switch chip > > All applied and pushed out to net-next-2.6, thanks! I had to add the following patch to fix the allmodconfig build. If DSA is enabled, since it's a bool it can only be 'y', and PHYLIB happens to be "m", things explode. Fix this by adding appropriate select directive. dsa: Need to select PHYLIB. Signed-off-by: David S. Miller --- net/dsa/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/dsa/Kconfig b/net/dsa/Kconfig index 3f2fd39..cdce4c6 100644 --- a/net/dsa/Kconfig +++ b/net/dsa/Kconfig @@ -2,6 +2,7 @@ menuconfig NET_DSA bool "Distributed Switch Architecture support" default n depends on EXPERIMENTAL + select PHYLIB ---help--- This allows you to use hardware switch chips that use the Distributed Switch Architecture.