Merge branch 'issue-825' of https://github.com/LeaflessMelospiza/fio
[fio.git] / t / memlock.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <pthread.h>
5
6 static struct thread_data {
7         unsigned long mib;
8 } td;
9
10 static void *worker(void *data)
11 {
12         struct thread_data *td = data;
13         unsigned long index;
14         size_t size;
15         char *buf;
16         int i, first = 1;
17
18         size = td->mib * 1024UL * 1024UL;
19         buf = malloc(size);
20
21         for (i = 0; i < 100000; i++) {
22                 for (index = 0; index + 4096 < size; index += 4096)
23                         memset(&buf[index+512], 0x89, 512);
24                 if (first) {
25                         printf("loop%d: did %lu MiB\n", i+1, size/(1024UL*1024UL));
26                         first = 0;
27                 }
28         }
29         free(buf);
30         return NULL;
31 }
32
33 int main(int argc, char *argv[])
34 {
35         unsigned long mib, threads;
36         pthread_t *pthreads;
37         int i;
38
39         if (argc < 3) {
40                 printf("%s: <MiB per thread> <threads>\n", argv[0]);
41                 return 1;
42         }
43
44         mib = strtoul(argv[1], NULL, 10);
45         threads = strtoul(argv[2], NULL, 10);
46
47         pthreads = calloc(threads, sizeof(pthread_t));
48         td.mib = mib;
49
50         for (i = 0; i < threads; i++)
51                 pthread_create(&pthreads[i], NULL, worker, &td);
52
53         for (i = 0; i < threads; i++) {
54                 void *ret;
55
56                 pthread_join(pthreads[i], &ret);
57         }
58         return 0;
59 }