Re: Printing IDT on Linux 2.4.20

From: Zwane Mwaikambo (zwane@linuxpower.ca)
Date: Tue May 27 2003 - 22:23:50 EST


On Tue, 27 May 2003, Slack Ware wrote:

> Hi everybody!
> I've a problem with the checkidt utility provided by
> Phrack Issue #59, I think.
> The checkidt utility is for 2.4.x kernels, supposedly,
> but I compiled it under 2.4.20 and it couldn't read
> /dev/kmem.
> Anyway, I would like to print the IDT on kernel 2.4.20
> with checkidt or not.
> Any suggestions are welcome.
> Regards,

*shrug* I don't know why they would want to check /dev/kmem just for the
IDT.

#include <stdio.h>

struct dt {
unsigned short limit;
unsigned long address __attribute__((packed));
unsigned short padding;
} __attribute__((packed));

int main()
{
struct dt foo;

__asm__ __volatile__ ("sidt %0":"=m"(foo));
printf("limit=%d address=%lx\n", foo.limit, foo.address);
return 0;
}

Zwane
--
function.linuxpower.ca
-
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/