~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/mm/hugepage-mmap.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * hugepage-mmap:
  4  *
  5  * Example of using huge page memory in a user application using the mmap
  6  * system call.  Before running this application, make sure that the
  7  * administrator has mounted the hugetlbfs filesystem (on some directory
  8  * like /mnt) using the command mount -t hugetlbfs nodev /mnt. In this
  9  * example, the app is requesting memory of size 256MB that is backed by
 10  * huge pages.
 11  *
 12  * For the ia64 architecture, the Linux kernel reserves Region number 4 for
 13  * huge pages.  That means that if one requires a fixed address, a huge page
 14  * aligned address starting with 0x800000... will be required.  If a fixed
 15  * address is not required, the kernel will select an address in the proper
 16  * range.
 17  * Other architectures, such as ppc64, i386 or x86_64 are not so constrained.
 18  */
 19 #define _GNU_SOURCE
 20 #include <stdlib.h>
 21 #include <stdio.h>
 22 #include <unistd.h>
 23 #include <sys/mman.h>
 24 #include <fcntl.h>
 25 #include "../kselftest.h"
 26 
 27 #define LENGTH (256UL*1024*1024)
 28 #define PROTECTION (PROT_READ | PROT_WRITE)
 29 
 30 /* Only ia64 requires this */
 31 #ifdef __ia64__
 32 #define ADDR (void *)(0x8000000000000000UL)
 33 #define FLAGS (MAP_SHARED | MAP_FIXED)
 34 #else
 35 #define ADDR (void *)(0x0UL)
 36 #define FLAGS (MAP_SHARED)
 37 #endif
 38 
 39 static void check_bytes(char *addr)
 40 {
 41         ksft_print_msg("First hex is %x\n", *((unsigned int *)addr));
 42 }
 43 
 44 static void write_bytes(char *addr)
 45 {
 46         unsigned long i;
 47 
 48         for (i = 0; i < LENGTH; i++)
 49                 *(addr + i) = (char)i;
 50 }
 51 
 52 static int read_bytes(char *addr)
 53 {
 54         unsigned long i;
 55 
 56         check_bytes(addr);
 57         for (i = 0; i < LENGTH; i++)
 58                 if (*(addr + i) != (char)i) {
 59                         ksft_print_msg("Error: Mismatch at %lu\n", i);
 60                         return 1;
 61                 }
 62         return 0;
 63 }
 64 
 65 int main(void)
 66 {
 67         void *addr;
 68         int fd, ret;
 69 
 70         ksft_print_header();
 71         ksft_set_plan(1);
 72 
 73         fd = memfd_create("hugepage-mmap", MFD_HUGETLB);
 74         if (fd < 0)
 75                 ksft_exit_fail_msg("memfd_create() failed: %s\n", strerror(errno));
 76 
 77         addr = mmap(ADDR, LENGTH, PROTECTION, FLAGS, fd, 0);
 78         if (addr == MAP_FAILED) {
 79                 close(fd);
 80                 ksft_exit_fail_msg("mmap(): %s\n", strerror(errno));
 81         }
 82 
 83         ksft_print_msg("Returned address is %p\n", addr);
 84         check_bytes(addr);
 85         write_bytes(addr);
 86         ret = read_bytes(addr);
 87 
 88         munmap(addr, LENGTH);
 89         close(fd);
 90 
 91         ksft_test_result(!ret, "Read same data\n");
 92 
 93         ksft_exit(!ret);
 94 }
 95 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php