On Nov 30, 2009 at 16:40, Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> 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 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html