Go to the documentation of this file.
7 #ifndef _BLACKFIN_PAGE_H
8 #define _BLACKFIN_PAGE_H
10 #define ARCH_PFN_OFFSET (CONFIG_PHY_RAM_BASE_ADDRESS >> PAGE_SHIFT)
11 #define MAP_NR(addr) ((unsigned long)(addr) >> PAGE_SHIFT)
13 #define VM_DATA_DEFAULT_FLAGS \
14 (VM_READ | VM_WRITE | \
15 ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
16 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)