blob: af4c12cbe1815f7119511a6bdb44b39421c85161 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboe2e1df072012-02-09 11:15:02 +01005 * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
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 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
Jens Axboedbe11252007-02-11 00:19:51 +010025#include <locale.h>
Jens Axboea5b01f12010-11-11 09:19:49 +010026#include <time.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027
28#include "fio.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010029#include "smalloc.h"
Jens Axboeebac4652005-12-08 15:25:21 +010030
Bruce Cran70781062012-04-03 18:00:00 -060031uintptr_t page_mask;
32uintptr_t page_size;
Jens Axboed529ee12009-07-01 10:33:03 +020033
Jens Axboe0ad5edc2011-10-05 12:39:06 +020034static 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
Jens Axboe0dcebdf2013-01-23 15:42:16 -070048#if defined(CONFIG_LITTLE_ENDIAN)
Jens Axboe0ad5edc2011-10-05 12:39:06 +020049 if (be)
50 return 1;
Jens Axboe0dcebdf2013-01-23 15:42:16 -070051#elif defined(CONFIG_BIG_ENDIAN)
Jens Axboe0ad5edc2011-10-05 12:39:06 +020052 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
Jens Axboe50d16972011-09-29 17:45:28 -060064int main(int argc, char *argv[], char *envp[])
65{
66 long ps;
67
Jens Axboe0ad5edc2011-10-05 12:39:06 +020068 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
Jens Axboe67bf9822013-01-10 11:23:19 +010074#if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME)
75#error "No available clock source!"
76#endif
77
Jens Axboe50d16972011-09-29 17:45:28 -060078 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
Jens Axboefa80fea2012-12-09 20:29:00 +0100103 fio_time_init();
104
Jens Axboe2e1df072012-02-09 11:15:02 +0100105 if (nr_clients)
106 return fio_handle_clients();
107 else
108 return fio_backend();
Jens Axboe50d16972011-09-29 17:45:28 -0600109}