2005-12-08 08:10:24

by yen

[permalink] [raw]
Subject: IRQ vector assignment for system call exception

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)


2005-12-08 09:22:42

by Coywolf Qi Hunt

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception

2005/12/8, yen <[email protected]>:
> 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/

2005-12-08 13:26:33

by linux-os (Dick Johnson)

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception


On Thu, 8 Dec 2005, Coywolf Qi Hunt wrote:

> 2005/12/8, yen <[email protected]>:
>> 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 [email protected] - and destroy all copies of this information, including any attachments, without reading or disclosing them.

Thank you.

2005-12-10 13:20:53

by Gaurav Dhiman

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception

yes, definetely a historical reason. System libraries need to know
this vector to invoke system call.

-Gaurav


On 12/8/05, yen <[email protected]> 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 [email protected]
> 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/
--

2005-12-10 18:11:17

by Arjan van de Ven

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception

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.


2005-12-11 10:59:33

by Ingo Molnar

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception


* Arjan van de Ven <[email protected]> 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

2005-12-15 22:50:54

by Jan Engelhardt

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception

>> 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
--

2005-12-15 23:17:10

by Arjan van de Ven

[permalink] [raw]
Subject: Re: IRQ vector assignment for system call exception

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.