From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754748AbbENAZI (ORCPT ); Wed, 13 May 2015 20:25:08 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:50789 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934595AbbENAYh (ORCPT ); Wed, 13 May 2015 20:24:37 -0400 Date: Wed, 13 May 2015 17:24:34 -0700 From: Guenter Roeck To: Stephen Rothwell Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Scott Feldman , "David S. Miller" Subject: Re: linux-next: Tree for May 13 (avr32 build error due to switchdev patch) Message-ID: <20150514002434.GA27592@roeck-us.net> References: <20150513180927.5d2ed45e@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150513180927.5d2ed45e@canb.auug.org.au> User-Agent: Mutt/1.5.23 (2014-03-12) X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, May 13, 2015 at 06:09:27PM +1000, Stephen Rothwell wrote: > Hi all, > > Changes since 20150512: > > New tree: h8300 > > The net-next tree gained a conflict against the net tree. > > The security tree gained conflicts against the vfs tree. > > The spi tree lost its build failure. > > The target-updates tree still had its build failure so I used the version > from next-20150511. > > The gpio tree gained a build failure so I used the version from > next-20150512. > > Non-merge commits (relative to Linus' tree): 3825 > 3592 files changed, 173394 insertions(+), 76013 deletions(-) > > ---------------------------------------------------------------------------- > avr32:defconfig: net/bridge/br_stp.c: In function 'br_set_state': net/bridge/br_stp.c:44: error: unknown field 'stp_state' specified in initializer The problem is most likely that the variable is part of an unnamed union, and it looks like gcc 4.2.4 doesn't understand that. avr32 is not supported by more recent versions of gcc, so I can not update the toolchain to work around the problem. Introduced by commit 3563606258cf3 ("switchdev: convert STP update to switchdev attr set"). Guenter