Searched defs:modtext (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/sun4/os/
H A Dstartup.c139 caddr_t modtext; /* beginning of module text */ variable
496 * |-----------------------|- e_text/modtext
1017 modtext = (caddr_t)roundup((uintptr_t)e_text, MMU_PAGESIZE);
1020 modtext_sz = (caddr_t)roundup((uintptr_t)modtext, MMU_PAGESIZE4M) -
1021 modtext;
1022 PRM_DEBUG(modtext);
3148 extern caddr_t modtext;
3199 *text_arena = vmem_create("module_text", modtext_sz ? modtext : NULL,
/illumos-gate/usr/src/uts/i86pc/os/
H A Dstartup.c366 caddr_t modtext; /* start of loadable module text reserved */ variable
1036 modtext = (caddr_t)ROUND_UP_PAGE(e_text);
1038 if (e_modtext - modtext > MODTEXT)
1039 e_modtext = modtext + MODTEXT;
1043 PRM_DEBUG(modtext);
3182 size_t tsize = e_modtext - modtext;
3185 *text_arena = vmem_create("module_text", tsize ? modtext : NULL, tsize,

Completed in 70 milliseconds