Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / um / include / mem.h
blob5cd40e99e8d5c925ba0f7a983972f5153462a571
1 /*
2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #ifndef __MEM_H__
7 #define __MEM_H__
9 extern int phys_mapping(unsigned long phys, unsigned long long *offset_out);
11 extern unsigned long uml_physmem;
12 static inline unsigned long to_phys(void *virt)
14 return(((unsigned long) virt) - uml_physmem);
17 static inline void *to_virt(unsigned long phys)
19 return((void *) uml_physmem + phys);
22 #endif