Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 966 → Rev 967

/kernel/trunk/arch/amd64/include/mm/page.h
31,14 → 31,16
 
#include <arch/mm/frame.h>
 
#define PAGE_WIDTH FRAME_WIDTH
#define PAGE_SIZE FRAME_SIZE
 
#ifdef KERNEL
 
#ifndef __ASM__
# include <mm/page.h>
# include <arch/types.h>
#endif
 
#define PAGE_WIDTH FRAME_WIDTH
#define PAGE_SIZE FRAME_SIZE
 
#ifndef __ASM__
# define KA2PA(x) (((__address) (x)) - 0xffffffff80000000)
# define PA2KA(x) (((__address) (x)) + 0xffffffff80000000)
142,6 → 144,8
 
extern void page_arch_init(void);
 
#endif
#endif /* __ASM__ */
 
#endif /* KERNEL */
 
#endif