mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Arjan van de Ven <arjanv@redhat.com>
To: Olaf Hering <olh@suse.de>
Cc: Sam Ravnborg <sam@ravnborg.org>,
	Linus Torvalds <torvalds@osdl.org>,
	Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: gcc -msoft-float [Was: Linux 2.6.0-test7 - stability freeze]
Date: Tue, 14 Oct 2003 10:31:00 +0200	[thread overview]
Message-ID: <1066120260.5241.3.camel@laptop.fenrus.com> (raw)
In-Reply-To: <20031014081228.GA23257@suse.de>

[-- Attachment #1: Type: text/plain, Size: 1745 bytes --]

On Tue, 2003-10-14 at 10:12, Olaf Hering wrote:
>  On Mon, Oct 13, Sam Ravnborg wrote:
> 
> > On Mon, Oct 13, 2003 at 07:34:46PM +0200, Olaf Hering wrote:
> > > a longstanding bug, should probably go to the main Makefile. But I dont
> > > know if all supported archs know about -msoft-float.
> > 
> > Could you please elaborate about what this fixes.
> > I'm very resistant to add new flags unconditionally to gcc at this stage.
> 
> Is floating point in the kernel really allowed on i386? If so, please
> please add a commet to this Makefile about this fact. 
> 
> test7bk3 results, allyesconfig:
> 
> 
> drivers/built-in.o(.text+0x2ba129): In function `amd8111e_resume':
> drivers/net/amd8111e.c:1700: undefined reference to `__floatsidf'

real bug:
        if(lp->options & OPTION_DYN_IPG_ENABLE)
                mod_timer(&lp->ipg_data.ipg_timer,
                                jiffies + (IPG_CONVERGE_TIME * HZ));
 
where 
#define      IPG_CONVERGE_TIME 0.5

> drivers/media/dvb/ttpci/av7110.c:2709: undefined reference to `__floatsidf'

worse:
       if (freq < 16*168.25 )
                config = 0xa0;
        else if (freq < 16*447.25)
                config = 0x90;
        else
                config = 0x30;

> drivers/built-in.o(.text+0x5c24d0): In function `sisfb_do_set_var':
> drivers/video/sis/sis_main.c:654: undefined reference to `__floatsidf'


static int sisfb_do_set_var(struct fb_var_screeninfo *var, int isactive,
                      struct fb_info *info)
{
        unsigned int htotal =
                var->left_margin + var->xres + var->right_margin +
                var->hsync_len;
        unsigned int vtotal = 0;
        double drate = 0, hrate = 0;
 
ugh


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2003-10-14  8:31 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-08 19:47 Linux 2.6.0-test7 - stability freeze Linus Torvalds
2003-10-08 23:57 ` Linux 2.6.0-test7 - stability freeze (compile stats) John Cherry
2003-10-09 12:45 ` Linux 2.6.0-test7 - compile/boot success iain d broadfoot
2003-10-09 13:29 ` 2.6.0-test7 BLK_DEV_FD dependence on ISA breakage Mikael Pettersson
2003-10-09 14:05   ` Andrew Morton
2003-10-09 18:04     ` Anton Blanchard
2003-10-09 18:18     ` Arun Sharma
2003-10-09 20:21       ` Mikael Pettersson
2003-10-10 11:55         ` Geert Uytterhoeven
2003-10-13  4:52 ` Linux 2.6.0-test7 - stability freeze Rob Landley
2003-10-13  4:53 ` Deja vu Rob Landley
2003-10-13 17:34 ` Linux 2.6.0-test7 - stability freeze Olaf Hering
2003-10-13 20:50   ` gcc -msoft-float [Was: Linux 2.6.0-test7 - stability freeze] Sam Ravnborg
2003-10-14  8:12     ` Olaf Hering
2003-10-14  8:31       ` Arjan van de Ven [this message]
2003-10-14  8:50         ` Olaf Hering
2003-10-14 11:40   ` Linux 2.6.0-test7 - stability freeze Jakub Jelinek
2003-10-15 17:27 ` Linux 2.6.0-test7 - Suspend to Disk success Jonathan McDowell
2003-10-15 21:00   ` Daniele Venzano
2003-10-16 14:06     ` Pavel Machek
2003-10-18 17:35       ` Daniele Venzano
2003-10-18 17:54       ` Daniele Venzano
2003-10-18 18:01         ` Pavel Machek
2003-10-18 20:48           ` Daniele Venzano
2003-10-19  7:38           ` Daniele Venzano
2003-10-20 19:08             ` Patrick Mochel
2003-10-14  8:30 gcc -msoft-float [Was: Linux 2.6.0-test7 - stability freeze] Thomas Winischhofer
2003-10-14 11:29 ` Andrew Morton
2003-10-14 11:35   ` Thomas Winischhofer
2003-10-14  9:08 Thomas Winischhofer
2003-10-14 13:16 ` Meelis Roos
2003-10-14 13:21   ` Thomas Winischhofer
2003-10-14 16:39     ` Geert Uytterhoeven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1066120260.5241.3.camel@laptop.fenrus.com \
    --to=arjanv@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=olh@suse.de \
    --cc=sam@ravnborg.org \
    --cc=torvalds@osdl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®