Re: [PATCH] time: Fix constant size in kernel/timeconst.h

2008-02-09 Thread Johann Felix Soden
H. Peter Anvin wrote: > Johann Felix Soden wrote: > > kernel/timeconst.pl generates only long sized constants in timeconst.pl > > which gives this warning: > > > > kernel/time.c: In function 'msecs_to_jiffies': > > kernel/time.c:472: warning: integer constant is too large for 'long' type > > > >

Re: [PATCH] time: Fix constant size in kernel/timeconst.h

2008-02-09 Thread H. Peter Anvin
Johann Felix Soden wrote: From: Johann Felix Soden <[EMAIL PROTECTED]> kernel/timeconst.pl generates only long sized constants in timeconst.pl which gives this warning: kernel/time.c: In function 'msecs_to_jiffies': kernel/time.c:472: warning: integer constant is too large for 'long' type unsi

[PATCH] time: Fix constant size in kernel/timeconst.h

2008-02-09 Thread Johann Felix Soden
From: Johann Felix Soden <[EMAIL PROTECTED]> kernel/timeconst.pl generates only long sized constants in timeconst.pl which gives this warning: kernel/time.c: In function 'msecs_to_jiffies': kernel/time.c:472: warning: integer constant is too large for 'long' type unsigned long long is needed. S