Increase maximum number of page table entries per VM86 context from 8 to 24

pages, yet again.  Now we can allocate a whole segment, which is required
for shadowing option ROM images, for example.
This commit is contained in:
Jung-uk Kim 2010-08-25 21:13:23 +00:00
parent 97e6525d6a
commit db1cea00ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211825

View File

@ -100,7 +100,7 @@ struct vm86frame {
#define vmf_eflags eflags.r_ex
};
#define VM86_PMAPSIZE 8
#define VM86_PMAPSIZE 24
#define VMAP_MALLOC 1 /* page was malloced by us */
struct vm86context {