#include <stdint.h>
Go to the source code of this file.
Functions | |
| FILE_LICENCE (GPL2_OR_LATER) | |
| void | hide_umalloc (physaddr_t start, physaddr_t end) |
| Hide umalloc() region. | |
Definition in file hidemem.h.
| FILE_LICENCE | ( | GPL2_OR_LATER | ) |
| void hide_umalloc | ( | physaddr_t | start, | |
| physaddr_t | end | |||
| ) |
Hide umalloc() region.
Definition at line 114 of file hidemem.c.
References _textdata, assert, hide_region(), hidemem_umalloc, and virt_to_phys().
Referenced by hide_etherboot(), and memtop_urealloc().
00114 { 00115 assert ( end <= virt_to_phys ( _textdata ) ); 00116 hide_region ( &hidemem_umalloc, start, end ); 00117 }
1.5.7.1