Optimize interrupt vector lookup. There is no need to check the page table.

This commit is contained in:
Jung-uk Kim 2010-08-07 03:45:45 +00:00
parent f978c8f2c3
commit d7a5fb634f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210992

View File

@ -194,7 +194,7 @@ uint32_t
x86bios_get_intr(int intno)
{
return (readl(x86bios_offset(intno * 4)));
return (readl(BIOS_PADDRTOVADDR(intno * 4)));
}
void