kms_rotation_crc: Remove useless comments
[platform/upstream/intel-gpu-tools.git] / tests / gem_mmap_offset_exhaustion.c
1 /*
2  * Copyright © 2012 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Daniel Vetter <daniel.vetter@ffwll.ch>
25  *
26  */
27
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <fcntl.h>
33 #include <inttypes.h>
34 #include <errno.h>
35 #include <sys/stat.h>
36 #include <sys/ioctl.h>
37 #include "drm.h"
38 #include "ioctl_wrappers.h"
39 #include "drmtest.h"
40
41 #define OBJECT_SIZE (1024*1024)
42
43 /* Testcase: checks whether the kernel handles mmap offset exhaustion correctly
44  *
45  * Currently the kernel doesn't reap the mmap offset of purged objects, albeit
46  * there's nothing that prevents it ABI-wise and it helps to get out of corners
47  * (because drm_mm is only 32bit on 32bit archs unfortunately.
48  *
49  * Note that on 64bit machines we have plenty of address space (because drm_mm
50  * uses unsigned long).
51  */
52
53 static void
54 create_and_map_bo(int fd)
55 {
56         uint32_t handle;
57         char *ptr;
58
59         handle = gem_create(fd, OBJECT_SIZE);
60
61         ptr = gem_mmap(fd, handle, OBJECT_SIZE, PROT_READ | PROT_WRITE);
62         igt_assert(ptr);
63
64         /* touch it to force it into the gtt */
65         *ptr = 0;
66
67         /* but then unmap it again because we only have limited address space on
68          * 32 bit */
69         munmap(ptr, OBJECT_SIZE);
70
71         /* we happily leak objects to exhaust mmap offset space, the kernel will
72          * reap backing storage. */
73         gem_madvise(fd, handle, I915_MADV_DONTNEED);
74 }
75
76 igt_simple_main
77 {
78         int fd, i;
79
80         igt_skip_on_simulation();
81
82         fd = drm_open_any();
83
84         /* we have 32bit of address space, so try to fit one MB more
85          * than that. */
86         for (i = 0; i < 4096 + 1; i++)
87                 create_and_map_bo(fd);
88
89         close(fd);
90 }