From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrei Pelinescu-Onciul Subject: Re: linux-next: net tree build warning Date: Mon, 30 Nov 2009 10:49:30 +0100 Message-ID: <20091130094929.GY10897@shell.iptel.org> References: <20091130164015.9bb8f6a3.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from smtp.iptel.org ([213.192.59.67]:58315 "EHLO mail.iptel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752102AbZK3Jyb (ORCPT ); Mon, 30 Nov 2009 04:54:31 -0500 Content-Disposition: inline In-Reply-To: <20091130164015.9bb8f6a3.sfr@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: "David S. Miller" , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org On Nov 30, 2009 at 16:40, Stephen Rothwell wrote: > Hi Dave, > > Today's linux-next build (x86_64 allmodconfig) produced this warning: > > net/sctp/socket.c: In function 'sctp_setsockopt_autoclose': > net/sctp/socket.c:2091: warning: large integer implicitly truncated to unsigned type > > Introduced by commit f6778aab6ccc4b510b4dcfa770d9949b696b4545 ("sctp: > limit maximum autoclose setsockopt value") from the net tree. Thanks, the fix is: - sp->autoclose = MAX_SCHEDULE_TIMEOUT / HZ ; + sp->autoclose = (__u32)(MAX_SCHEDULE_TIMEOUT / HZ) ; I'll reply to this mail with the patch in git format. Andrei