Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * readahead implementation for busybox |
| 4 | * |
| 5 | * Preloads the given files in RAM, to reduce access time. |
| 6 | * Does this by calling the readahead(2) system call. |
| 7 | * |
| 8 | * Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com> |
| 9 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 10 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 11 | */ |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame^] | 12 | //config:config READAHEAD |
| 13 | //config: bool "readahead" |
| 14 | //config: default y |
| 15 | //config: depends on LFS |
| 16 | //config: select PLATFORM_LINUX |
| 17 | //config: help |
| 18 | //config: Preload the files listed on the command line into RAM cache so that |
| 19 | //config: subsequent reads on these files will not block on disk I/O. |
| 20 | //config: |
| 21 | //config: This applet just calls the readahead(2) system call on each file. |
| 22 | //config: It is mainly useful in system startup scripts to preload files |
| 23 | //config: or executables before they are used. When used at the right time |
| 24 | //config: (in particular when a CPU bound process is running) it can |
| 25 | //config: significantly speed up system startup. |
| 26 | //config: |
| 27 | //config: As readahead(2) blocks until each file has been read, it is best to |
| 28 | //config: run this applet as a background job. |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 29 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 30 | //usage:#define readahead_trivial_usage |
| 31 | //usage: "[FILE]..." |
| 32 | //usage:#define readahead_full_usage "\n\n" |
| 33 | //usage: "Preload FILEs to RAM" |
| 34 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 35 | #include "libbb.h" |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 36 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 37 | int readahead_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 38 | int readahead_main(int argc UNUSED_PARAM, char **argv) |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 39 | { |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 40 | int retval = EXIT_SUCCESS; |
| 41 | |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 42 | if (!argv[1]) { |
| 43 | bb_show_usage(); |
| 44 | } |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 45 | |
| 46 | while (*++argv) { |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 47 | int fd = open_or_warn(*argv, O_RDONLY); |
| 48 | if (fd >= 0) { |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 49 | off_t len; |
| 50 | int r; |
| 51 | |
| 52 | /* fdlength was reported to be unreliable - use seek */ |
| 53 | len = xlseek(fd, 0, SEEK_END); |
| 54 | xlseek(fd, 0, SEEK_SET); |
| 55 | r = readahead(fd, 0, len); |
Denis Vlasenko | 6bef3d1 | 2007-11-06 03:05:54 +0000 | [diff] [blame] | 56 | close(fd); |
Denis Vlasenko | b5c60fc | 2008-01-27 23:41:34 +0000 | [diff] [blame] | 57 | if (r >= 0) |
| 58 | continue; |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 59 | } |
| 60 | retval = EXIT_FAILURE; |
| 61 | } |
| 62 | |
| 63 | return retval; |
| 64 | } |