* IRQ vector assignment for system call exception
@ 2005-12-08 8:10 yen
2005-12-08 9:22 ` Coywolf Qi Hunt
2005-12-10 13:20 ` Gaurav Dhiman
0 siblings, 2 replies; 8+ messages in thread
From: yen @ 2005-12-08 8:10 UTC (permalink / raw)
To: linux-kernel
Hi:
I have a quwstion. Why the number 128 is reserver for system call exception in
interrupt vectors? Why not other numbers? Are there any historical reasons?
thanks.
--
Open WebMail Project (http://openwebmail.org)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-08 8:10 IRQ vector assignment for system call exception yen
@ 2005-12-08 9:22 ` Coywolf Qi Hunt
2005-12-08 13:26 ` linux-os (Dick Johnson)
2005-12-10 13:20 ` Gaurav Dhiman
1 sibling, 1 reply; 8+ messages in thread
From: Coywolf Qi Hunt @ 2005-12-08 9:22 UTC (permalink / raw)
To: yen; +Cc: linux-kernel
2005/12/8, yen <yen@eos.cs.nthu.edu.tw>:
> Hi:
> I have a quwstion. Why the number 128 is reserver for system call exception in
> interrupt vectors? Why not other numbers? Are there any historical reasons?
> thanks.
>
0x80 stands in the middle of [0..0xff].
--
Coywolf Qi Hunt
http://sosdg.org/~coywolf/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-08 9:22 ` Coywolf Qi Hunt
@ 2005-12-08 13:26 ` linux-os (Dick Johnson)
0 siblings, 0 replies; 8+ messages in thread
From: linux-os (Dick Johnson) @ 2005-12-08 13:26 UTC (permalink / raw)
To: Coywolf Qi Hunt; +Cc: yen, linux-kernel
On Thu, 8 Dec 2005, Coywolf Qi Hunt wrote:
> 2005/12/8, yen <yen@eos.cs.nthu.edu.tw>:
>> Hi:
>> I have a quwstion. Why the number 128 is reserver for system call exception in
>> interrupt vectors? Why not other numbers? Are there any historical reasons?
>> thanks.
>>
>
> 0x80 stands in the middle of [0..0xff].
> --
> Coywolf Qi Hunt
> http://sosdg.org/~coywolf/
If he's looking for 'secret codes' in the kernel, he might look
at:
LINUX_REBOOT_MAGIC2
LINUX_REBOOT_MAGIC2B
LINUX_REBOOT_MAGIC2C
... in linux-`uname -r`/include/linux/reboot.h Hint: Cvt dec to hex.
Cheers,
Dick Johnson
Penguin : Linux version 2.6.13.4 on an i686 machine (5589.55 BogoMips).
Warning : 98.36% of all statistics are fiction.
.
****************************************************************
The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.
Thank you.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-08 8:10 IRQ vector assignment for system call exception yen
2005-12-08 9:22 ` Coywolf Qi Hunt
@ 2005-12-10 13:20 ` Gaurav Dhiman
2005-12-10 18:11 ` Arjan van de Ven
1 sibling, 1 reply; 8+ messages in thread
From: Gaurav Dhiman @ 2005-12-10 13:20 UTC (permalink / raw)
To: yen; +Cc: linux-kernel
yes, definetely a historical reason. System libraries need to know
this vector to invoke system call.
-Gaurav
On 12/8/05, yen <yen@eos.cs.nthu.edu.tw> wrote:
> Hi:
> I have a quwstion. Why the number 128 is reserver for system call exception in
> interrupt vectors? Why not other numbers? Are there any historical reasons?
> thanks.
>
> --
> Open WebMail Project (http://openwebmail.org)
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
--
- Gaurav
my blog: http://lkdp.blogspot.com/
--
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-10 13:20 ` Gaurav Dhiman
@ 2005-12-10 18:11 ` Arjan van de Ven
2005-12-11 10:58 ` Ingo Molnar
0 siblings, 1 reply; 8+ messages in thread
From: Arjan van de Ven @ 2005-12-10 18:11 UTC (permalink / raw)
To: Gaurav Dhiman; +Cc: yen, linux-kernel
On Sat, 2005-12-10 at 18:50 +0530, Gaurav Dhiman wrote:
> yes, definetely a historical reason. System libraries need to know
> this vector to invoke system call.
nowadays it's also mostly unused; sysenter and friends are used instead
and they don't use this entry point.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-10 18:11 ` Arjan van de Ven
@ 2005-12-11 10:58 ` Ingo Molnar
2005-12-15 22:50 ` Jan Engelhardt
0 siblings, 1 reply; 8+ messages in thread
From: Ingo Molnar @ 2005-12-11 10:58 UTC (permalink / raw)
To: Arjan van de Ven; +Cc: Gaurav Dhiman, yen, linux-kernel
* Arjan van de Ven <arjan@infradead.org> wrote:
> On Sat, 2005-12-10 at 18:50 +0530, Gaurav Dhiman wrote:
> > yes, definetely a historical reason. System libraries need to know
> > this vector to invoke system call.
>
> nowadays it's also mostly unused; sysenter and friends are used
> instead and they don't use this entry point.
note that some system-calls are still invoked via int80 by glibc, such
as fork() - even on sysenter/syscall capable CPUs.
Ingo
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-11 10:58 ` Ingo Molnar
@ 2005-12-15 22:50 ` Jan Engelhardt
2005-12-15 23:16 ` Arjan van de Ven
0 siblings, 1 reply; 8+ messages in thread
From: Jan Engelhardt @ 2005-12-15 22:50 UTC (permalink / raw)
To: Ingo Molnar; +Cc: Arjan van de Ven, Gaurav Dhiman, yen, linux-kernel
>> On Sat, 2005-12-10 at 18:50 +0530, Gaurav Dhiman wrote:
>> > yes, definetely a historical reason. System libraries need to know
>> > this vector to invoke system call.
>>
>> nowadays it's also mostly unused; sysenter and friends are used
>> instead and they don't use this entry point.
>
>note that some system-calls are still invoked via int80 by glibc, such
>as fork() - even on sysenter/syscall capable CPUs.
OT: Any idea when glibc moves to use sysenter on capable CPUs?
Jan Engelhardt
--
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: IRQ vector assignment for system call exception
2005-12-15 22:50 ` Jan Engelhardt
@ 2005-12-15 23:16 ` Arjan van de Ven
0 siblings, 0 replies; 8+ messages in thread
From: Arjan van de Ven @ 2005-12-15 23:16 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: Ingo Molnar, Gaurav Dhiman, yen, linux-kernel
On Thu, 2005-12-15 at 23:50 +0100, Jan Engelhardt wrote:
> >> On Sat, 2005-12-10 at 18:50 +0530, Gaurav Dhiman wrote:
> >> > yes, definetely a historical reason. System libraries need to know
> >> > this vector to invoke system call.
> >>
> >> nowadays it's also mostly unused; sysenter and friends are used
> >> instead and they don't use this entry point.
> >
> >note that some system-calls are still invoked via int80 by glibc, such
> >as fork() - even on sysenter/syscall capable CPUs.
>
> OT: Any idea when glibc moves to use sysenter on capable CPUs?
it has been doing that for a LOOOONG time
exception are syscalls that sysenter can't do (iirc 6 argument ones, and
I suspect fork() because it's just "special", but all normal ones are
done via sysenter already from even before 2.6.0 got released.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-12-15 23:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-08 8:10 IRQ vector assignment for system call exception yen
2005-12-08 9:22 ` Coywolf Qi Hunt
2005-12-08 13:26 ` linux-os (Dick Johnson)
2005-12-10 13:20 ` Gaurav Dhiman
2005-12-10 18:11 ` Arjan van de Ven
2005-12-11 10:58 ` Ingo Molnar
2005-12-15 22:50 ` Jan Engelhardt
2005-12-15 23:16 ` Arjan van de Ven
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox