4 * Example of using huge page memory in a user application using the mmap
5 * system call. Before running this application, make sure that the
6 * administrator has mounted the hugetlbfs filesystem (on some directory
7 * like /mnt) using the command mount -t hugetlbfs nodev /mnt. In this
8 * example, the app is requesting memory of size 256MB that is backed by
11 * For the ia64 architecture, the Linux kernel reserves Region number 4 for
12 * huge pages. That means that if one requires a fixed address, a huge page
13 * aligned address starting with 0x800000... will be required. If a fixed
14 * address is not required, the kernel will select an address in the proper
16 * Other architectures, such as ppc64, i386 or x86_64 are not so constrained.
25 #define FILE_NAME "huge/hugepagefile"
26 #define LENGTH (256UL*1024*1024)
27 #define PROTECTION (PROT_READ | PROT_WRITE)
29 /* Only ia64 requires this */
31 #define ADDR (void *)(0x8000000000000000UL)
32 #define FLAGS (MAP_SHARED | MAP_FIXED)
34 #define ADDR (void *)(0x0UL)
35 #define FLAGS (MAP_SHARED)
38 static void check_bytes(char *addr)
40 printf("First hex is %x\n", *((unsigned int *)addr));
43 static void write_bytes(char *addr)
47 for (i = 0; i < LENGTH; i++)
48 *(addr + i) = (char)i;
51 static int read_bytes(char *addr)
56 for (i = 0; i < LENGTH; i++)
57 if (*(addr + i) != (char)i) {
58 printf("Mismatch at %lu\n", i);
69 fd = open(FILE_NAME, O_CREAT | O_RDWR, 0755);
71 perror("Open failed");
75 addr = mmap(ADDR, LENGTH, PROTECTION, FLAGS, fd, 0);
76 if (addr == MAP_FAILED) {
82 printf("Returned address is %p\n", addr);
85 ret = read_bytes(addr);