From: Jun Sun <jsun@mvista.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: durai <durai@isofttech.com>, mips <linux-mips@linux-mips.org>,
jsun@mvista.com
Subject: Re: unresolved symbol litodp,dptoli,dpmul - floating point operations in kernel
Date: Fri, 10 Oct 2003 09:58:24 -0700 [thread overview]
Message-ID: <20031010095824.B4192@mvista.com> (raw)
In-Reply-To: <Pine.GSO.4.21.0310101627400.8302-100000@waterleaf.sonytel.be>; from geert@linux-m68k.org on Fri, Oct 10, 2003 at 04:28:27PM +0200
On Fri, Oct 10, 2003 at 04:28:27PM +0200, Geert Uytterhoeven wrote:
> On Fri, 10 Oct 2003, durai wrote:
> > I am using a mips cross compiler (mips-linux-gcc, version 2.95.3) to build my driver
> > I am using some floating point operations in a wireless lan driver for a mips platform in ucLinux, When i load the driver I am getting unresolved symbols
> >
> > >
> > > insmod: unresolved symbol dptoli
> > > insmod: unresolved symbol dpmul
> > > insmod: unresolved symbol litodp
> >
> > And somebody told me that we cannot use floating point operations in kernel code, but i desperately need to use floating point operations.
> > please tell me how to use floating point operations in kernel code.
>
> Do not use floating point operations in kernel code.
> Re-implement using fixed point or something like that.
>
If you are really really desparate, something like the following
might work.
void use_fpu(void)
{
if (is_fpu_owner()) {
save_fp(current);
loose_fpu();
enable_fpu();
}
local_irq_save(flags);
/* now use fpu and store the results */
local_irq_restore(flags);
}
I like to emphsize this is just a hack and I am not even sure if it will work
at all. If compiler complains you might have to change the
CC flag for that file or use fpu with inline assembly.
Jun
next prev parent reply other threads:[~2003-10-10 16:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-10 13:59 unresolved symbol litodp,dptoli,dpmul - floating point operations in kernel durai
2003-10-10 14:28 ` Geert Uytterhoeven
2003-10-10 16:58 ` Jun Sun [this message]
2003-10-13 20:54 ` Ralf Baechle
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=20031010095824.B4192@mvista.com \
--to=jsun@mvista.com \
--cc=durai@isofttech.com \
--cc=geert@linux-m68k.org \
--cc=linux-mips@linux-mips.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