From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay3.sgi.com [192.48.152.1]) by ozlabs.org (Postfix) with ESMTP id C21DAB6F80 for ; Fri, 12 Aug 2011 00:25:03 +1000 (EST) Date: Thu, 11 Aug 2011 09:25:00 -0500 From: Robin Holt To: U Bhaskar-B22300 Subject: [PATCH] p1010rdb: gianfar config does not have queues. Message-ID: <20110811142500.GD4926@sgi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: PPC list , Eric Dumazet List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , If I have the the fsl,num_rx_queues and fsl,num_tx_queues properties defined in the p1010's device tree file, I get a kernel panic very shortly after boot. The failure indicates we are configuring the gianfar.c driver for a queue depth greater than actual. Removing the properties got the problem resolved. Signed-off-by: Robin Holt To: U Bhaskar-B22300 Cc: PPC list Cc: Eric Dumazet diff --git a/arch/powerpc/boot/dts/p1010si.dtsi b/arch/powerpc/boot/dts/p1010si.dtsi index 7f51104..91566aa 100644 --- a/arch/powerpc/boot/dts/p1010si.dtsi +++ b/arch/powerpc/boot/dts/p1010si.dtsi @@ -258,8 +258,6 @@ device_type = "network"; model = "eTSEC"; compatible = "fsl,etsec2"; - fsl,num_rx_queues = <0x8>; - fsl,num_tx_queues = <0x8>; local-mac-address = [ 00 00 00 00 00 00 ]; interrupt-parent = <&mpic>; @@ -280,8 +278,6 @@ device_type = "network"; model = "eTSEC"; compatible = "fsl,etsec2"; - fsl,num_rx_queues = <0x8>; - fsl,num_tx_queues = <0x8>; local-mac-address = [ 00 00 00 00 00 00 ]; interrupt-parent = <&mpic>; @@ -302,8 +298,6 @@ device_type = "network"; model = "eTSEC"; compatible = "fsl,etsec2"; - fsl,num_rx_queues = <0x8>; - fsl,num_tx_queues = <0x8>; local-mac-address = [ 00 00 00 00 00 00 ]; interrupt-parent = <&mpic>;