Re: ABI change for device drivers using future AVX instruction set
- From: Arjan van de Ven <arjan@xxxxxxxxxxxxx>
- Date: Wed, 25 Jun 2008 09:22:24 -0700
On Wed, 25 Jun 2008 17:32:36 +0200
Agner Fog <agner@xxxxxxxxx> wrote:
One problem that has not been resolved yet, AFAIK, is how to handle
the possible use of YMM registers in device drivers. Should these
registers be saved before calling a device driver from an interrupt
or should it be the responsibility of the device driver?
the answer is: you don't use AVX in drivers just as you don't use SSE
in drivers.
Let me repeat this loud and clear:
It is not allowed to use floating point, SSE of AVX in device drivers.
(there are few places that very carefully do this anyway, the raid5
code being the most obvious one, but we should not add more)
2. There is a performance cost to using XSAVE / XRESTOR.
a patch introducing xsave/xrestor is being discussed already here...
it's not really more expensive.
3. When compiling a device driver, the compiler may insert implicit
calls to library functions such as memcpy and memset. These functions
typically have a CPU dispatcher that chooses the largest register
size available. The device driver may therefore use YMM registers
without the knowledge of the programmer and without compiling with
the AVX switch on.
this is not correct; the library functions are provided by the kernel
and do not use AVX etc.
--
If you want to reach me at my work email, use arjan@xxxxxxxxxxxxxxx
For development, discussion and tips for power savings,
visit http://www.lesswatts.org
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: ABI change for device drivers using future AVX instruction set
- From: H. Peter Anvin
- Re: ABI change for device drivers using future AVX instruction set
- From: Agner Fog
- Re: ABI change for device drivers using future AVX instruction set
- References:
- ABI change for device drivers using future AVX instruction set
- From: Agner Fog
- ABI change for device drivers using future AVX instruction set
- Prev by Date: Re: [patch 1/2] mm: dont clear PG_uptodate in invalidate_complete_page2()
- Next by Date: Re: stuck tcp connections 2.6.26-rc7
- Previous by thread: ABI change for device drivers using future AVX instruction set
- Next by thread: Re: ABI change for device drivers using future AVX instruction set
- Index(es):
Relevant Pages
|