Roman Zippel <[EMAIL PROTECTED]> wrote:
> I would actually prefer to introduce an explicit API for signed 64
> divides to get rid of the temps completely
Yeah, that's a better plan.
David
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMA
Hi,
On Thu, 21 Feb 2008, David Howells wrote:
> The kernel NTP code shouldn't hand 64-bit *signed* values to do_div(). Make
> it
> instead hand 64-bit unsigned values. This gets rid of a couple of warnings.
I would actually prefer to introduce an explicit API for signed 64
divides to get rid
On Sat, 23 Feb 2008, Andrew Morton wrote:
> > > Thomas, do you consider ntp to fall under git-hrt?
> >
> > I'll pick it up.
> >
> OK. And this is still
> git+ssh://master.kernel.org/pub/scm/linux/kernel/git/tglx/linux-2.6-hrt.git#mm,
> yes?
Yes
> Can we please define the scope of that tree?
On Sat, 23 Feb 2008 22:01:55 +0100 (CET) Thomas Gleixner <[EMAIL PROTECTED]>
wrote:
> On Sat, 23 Feb 2008, Andrew Morton wrote:
>
> > On Thu, 21 Feb 2008 16:50:35 + David Howells <[EMAIL PROTECTED]> wrote:
> >
> > > From: David Howells <[EMAIL PROTECTED]>
> > >
> > > The kernel NTP code sh
On Sat, 23 Feb 2008, Andrew Morton wrote:
> On Thu, 21 Feb 2008 16:50:35 + David Howells <[EMAIL PROTECTED]> wrote:
>
> > From: David Howells <[EMAIL PROTECTED]>
> >
> > The kernel NTP code shouldn't hand 64-bit *signed* values to do_div().
> > Make it
> > instead hand 64-bit unsigned valu
On Thu, 21 Feb 2008 16:50:35 + David Howells <[EMAIL PROTECTED]> wrote:
> From: David Howells <[EMAIL PROTECTED]>
>
> The kernel NTP code shouldn't hand 64-bit *signed* values to do_div(). Make
> it
> instead hand 64-bit unsigned values. This gets rid of a couple of warnings.
On certain a
David Howells <[EMAIL PROTECTED]> wrote:
> Subject: [PATCH] Make the kernel NTP code hand 64-bit *unsigned* values to
> do_div() [try #2]
Ignore try #2. I forgot to commit the changes before mailing.
David
--
To unsubscribe from this list: send the line "unsubscribe lin
From: David Howells <[EMAIL PROTECTED]>
The kernel NTP code shouldn't hand 64-bit *signed* values to do_div(). Make it
instead hand 64-bit unsigned values. This gets rid of a couple of warnings.
Signed-off-by: David Howells <[EMAIL PROTECTED]>
---
kernel/time/ntp.c |8 +---
1 files ch
From: David Howells <[EMAIL PROTECTED]>
The kernel NTP code shouldn't hand 64-bit *signed* values to do_div(). Make it
instead hand 64-bit unsigned values. This gets rid of a couple of warnings.
Signed-off-by: David Howells <[EMAIL PROTECTED]>
---
kernel/time/ntp.c | 12 +++-
1 file
Andreas Schwab <[EMAIL PROTECTED]> wrote:
> do_div previously modified temp64 by side effect, now it no longer does
> that.
Good point.
David
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vg
David Howells <[EMAIL PROTECTED]> writes:
> if (time_offset < 0) {
> - temp64 = -temp64;
> - do_div(temp64, mtemp);
> + utemp64 = -temp64;
> + do_div(utemp64, mtemp);
>
From: David Howells <[EMAIL PROTECTED]>
The kernel NTP code shouldn't hand 64-bit *signed* values to do_div(). Make it
instead hand 64-bit unsigned values. This gets rid of a couple of warnings.
Signed-off-by: David Howells <[EMAIL PROTECTED]>
---
kernel/time/ntp.c |8 +---
1 files ch
12 matches
Mail list logo