From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760554Ab1F1SLG (ORCPT ); Tue, 28 Jun 2011 14:11:06 -0400 Received: from mail-vw0-f46.google.com ([209.85.212.46]:48707 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760525Ab1F1SKy (ORCPT ); Tue, 28 Jun 2011 14:10:54 -0400 Date: Tue, 28 Jun 2011 15:11:15 -0300 From: "Gustavo F. Padovan" To: Stephen Rothwell Cc: "John W. Linville" , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Anderson Briglia , Anderson Lizardo , Bruna Moreira , Vinicius Costa Gomes , Alexey Dobriyan , David Miller , netdev@vger.kernel.org Subject: Re: linux-next: build failure after merge of the wireless tree Message-ID: <20110628181115.GB23183@joana> Mail-Followup-To: Stephen Rothwell , "John W. Linville" , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Anderson Briglia , Anderson Lizardo , Bruna Moreira , Vinicius Costa Gomes , Alexey Dobriyan , David Miller , netdev@vger.kernel.org References: <20110623130317.b3a6085e.sfr@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110623130317.b3a6085e.sfr@canb.auug.org.au> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi John, * Stephen Rothwell [2011-06-23 13:03:17 +1000]: > Hi John, > > After merging the wireless tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > net/bluetooth/smp.c: In function 'smp_e': > net/bluetooth/smp.c:49:21: error: storage size of 'sg' isn't known > net/bluetooth/smp.c:67:2: error: implicit declaration of function 'sg_init_one' > net/bluetooth/smp.c:49:21: warning: unused variable 'sg' > > Caused by commit d22ef0bc83c5 ("Bluetooth: Add LE SMP Cryptoolbox > functions"). Missing include file, presumably. This batch has been in > the bluetooth tree since June 14, so it may have been exposed by the > removal of linux/mm.h from netdevice.h ... > > I have added the following patch as a merge fix up for today. > > From: Stephen Rothwell > Date: Thu, 23 Jun 2011 12:58:55 +1000 > Subject: [PATCH] Bluetooth: include scatterlist.h where needed > > Signed-off-by: Stephen Rothwell > --- > net/bluetooth/smp.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c > index 52e9ec2..a36f870 100644 > --- a/net/bluetooth/smp.c > +++ b/net/bluetooth/smp.c > @@ -25,6 +25,7 @@ > #include > #include > #include > +#include > #include Thanks for pick this patch to wireless tree ;) Gustavo