Add support for idletime profiling
[fio.git] / fio.c
1 /*
2  * fio - the flexible io tester
3  *
4  * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5  * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
6  *
7  * The license below covers all files distributed with fio unless otherwise
8  * noted in the file itself.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License version 2 as
12  *  published by the Free Software Foundation.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24 #include <unistd.h>
25 #include <locale.h>
26 #include <time.h>
27
28 #include "fio.h"
29 #include "smalloc.h"
30
31 uintptr_t page_mask;
32 uintptr_t page_size;
33
34 static int endian_check(void)
35 {
36         union {
37                 uint8_t c[8];
38                 uint64_t v;
39         } u;
40         int le = 0, be = 0;
41
42         u.v = 0x12;
43         if (u.c[7] == 0x12)
44                 be = 1;
45         else if (u.c[0] == 0x12)
46                 le = 1;
47
48 #if defined(CONFIG_LITTLE_ENDIAN)
49         if (be)
50                 return 1;
51 #elif defined(CONFIG_BIG_ENDIAN)
52         if (le)
53                 return 1;
54 #else
55         return 1;
56 #endif
57
58         if (!le && !be)
59                 return 1;
60
61         return 0;
62 }
63
64 int main(int argc, char *argv[], char *envp[])
65 {
66         long ps;
67
68         if (endian_check()) {
69                 log_err("fio: endianness settings appear wrong.\n");
70                 log_err("fio: please report this to fio@vger.kernel.org\n");
71                 return 1;
72         }
73
74 #if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
75 #error "No available clock source!"
76 #endif
77
78         arch_init(envp);
79
80         sinit();
81
82         /*
83          * We need locale for number printing, if it isn't set then just
84          * go with the US format.
85          */
86         if (!getenv("LC_NUMERIC"))
87                 setlocale(LC_NUMERIC, "en_US");
88
89         ps = sysconf(_SC_PAGESIZE);
90         if (ps < 0) {
91                 log_err("Failed to get page size\n");
92                 return 1;
93         }
94
95         page_size = ps;
96         page_mask = ps - 1;
97
98         fio_keywords_init();
99
100         if (parse_options(argc, argv))
101                 return 1;
102
103         fio_time_init();
104
105         if (nr_clients)
106                 return fio_handle_clients();
107         else
108                 return fio_backend();
109 }