Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * fio - the flexible io tester |
| 3 | * |
| 4 | * Copyright (C) 2005 Jens Axboe <axboe@suse.de> |
Jens Axboe | 2e1df07 | 2012-02-09 11:15:02 +0100 | [diff] [blame] | 5 | * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk> |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 6 | * |
Jens Axboe | 8e9fe63 | 2006-10-24 15:11:09 +0200 | [diff] [blame] | 7 | * The license below covers all files distributed with fio unless otherwise |
| 8 | * noted in the file itself. |
| 9 | * |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
Jens Axboe | 8e9fe63 | 2006-10-24 15:11:09 +0200 | [diff] [blame] | 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 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 | */ |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 24 | #include <unistd.h> |
Jens Axboe | dbe1125 | 2007-02-11 00:19:51 +0100 | [diff] [blame] | 25 | #include <locale.h> |
Jens Axboe | a5b01f1 | 2010-11-11 09:19:49 +0100 | [diff] [blame] | 26 | #include <time.h> |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 27 | |
| 28 | #include "fio.h" |
Jens Axboe | 2e5cdb1 | 2008-03-01 18:52:49 +0100 | [diff] [blame] | 29 | #include "smalloc.h" |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 30 | |
Jens Axboe | 5be4c94 | 2013-02-11 16:33:25 +0100 | [diff] [blame] | 31 | uintptr_t page_mask = 0; |
| 32 | uintptr_t page_size = 0; |
Jens Axboe | d529ee1 | 2009-07-01 10:33:03 +0200 | [diff] [blame] | 33 | |
Jens Axboe | 0ad5edc | 2011-10-05 12:39:06 +0200 | [diff] [blame] | 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 | |
Jens Axboe | 0dcebdf | 2013-01-23 15:42:16 -0700 | [diff] [blame] | 48 | #if defined(CONFIG_LITTLE_ENDIAN) |
Jens Axboe | 0ad5edc | 2011-10-05 12:39:06 +0200 | [diff] [blame] | 49 | if (be) |
| 50 | return 1; |
Jens Axboe | 0dcebdf | 2013-01-23 15:42:16 -0700 | [diff] [blame] | 51 | #elif defined(CONFIG_BIG_ENDIAN) |
Jens Axboe | 0ad5edc | 2011-10-05 12:39:06 +0200 | [diff] [blame] | 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 | |
Jens Axboe | 50d1697 | 2011-09-29 17:45:28 -0600 | [diff] [blame] | 64 | int main(int argc, char *argv[], char *envp[]) |
| 65 | { |
| 66 | long ps; |
| 67 | |
Jens Axboe | 0ad5edc | 2011-10-05 12:39:06 +0200 | [diff] [blame] | 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 | |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 74 | #if !defined(CONFIG_GETTIMEOFDAY) && !defined(CONFIG_CLOCK_GETTIME) |
| 75 | #error "No available clock source!" |
| 76 | #endif |
| 77 | |
Jens Axboe | 50d1697 | 2011-09-29 17:45:28 -0600 | [diff] [blame] | 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 | |
Jens Axboe | fa80fea | 2012-12-09 20:29:00 +0100 | [diff] [blame] | 103 | fio_time_init(); |
| 104 | |
Jens Axboe | 2e1df07 | 2012-02-09 11:15:02 +0100 | [diff] [blame] | 105 | if (nr_clients) |
| 106 | return fio_handle_clients(); |
| 107 | else |
| 108 | return fio_backend(); |
Jens Axboe | 50d1697 | 2011-09-29 17:45:28 -0600 | [diff] [blame] | 109 | } |