2006-08-20 22:12:18 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* readahead implementation for busybox
|
|
|
|
*
|
|
|
|
* Preloads the given files in RAM, to reduce access time.
|
|
|
|
* Does this by calling the readahead(2) system call.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com>
|
|
|
|
*
|
2010-08-16 20:14:46 +02:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-08-20 22:12:18 +00:00
|
|
|
*/
|
2016-11-22 23:14:24 +01:00
|
|
|
//config:config READAHEAD
|
2018-12-28 03:20:17 +01:00
|
|
|
//config: bool "readahead (1.5 kb)"
|
2016-11-22 23:14:24 +01:00
|
|
|
//config: default y
|
|
|
|
//config: depends on LFS
|
|
|
|
//config: help
|
2017-07-21 09:50:55 +02:00
|
|
|
//config: Preload the files listed on the command line into RAM cache so that
|
|
|
|
//config: subsequent reads on these files will not block on disk I/O.
|
2016-11-22 23:14:24 +01:00
|
|
|
//config:
|
2017-07-21 09:50:55 +02:00
|
|
|
//config: This applet just calls the readahead(2) system call on each file.
|
|
|
|
//config: It is mainly useful in system startup scripts to preload files
|
|
|
|
//config: or executables before they are used. When used at the right time
|
|
|
|
//config: (in particular when a CPU bound process is running) it can
|
|
|
|
//config: significantly speed up system startup.
|
2016-11-22 23:14:24 +01:00
|
|
|
//config:
|
2017-07-21 09:50:55 +02:00
|
|
|
//config: As readahead(2) blocks until each file has been read, it is best to
|
|
|
|
//config: run this applet as a background job.
|
2006-08-20 22:12:18 +00:00
|
|
|
|
2016-11-22 23:54:17 +01:00
|
|
|
//applet:IF_READAHEAD(APPLET(readahead, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_READAHEAD) += readahead.o
|
|
|
|
|
2011-04-11 03:29:49 +02:00
|
|
|
//usage:#define readahead_trivial_usage
|
|
|
|
//usage: "[FILE]..."
|
|
|
|
//usage:#define readahead_full_usage "\n\n"
|
|
|
|
//usage: "Preload FILEs to RAM"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2006-08-20 22:12:18 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int readahead_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2010-01-04 14:15:38 +01:00
|
|
|
int readahead_main(int argc UNUSED_PARAM, char **argv)
|
2006-08-20 22:12:18 +00:00
|
|
|
{
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
|
2010-01-04 14:15:38 +01:00
|
|
|
if (!argv[1]) {
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
2006-08-20 22:12:18 +00:00
|
|
|
|
|
|
|
while (*++argv) {
|
2007-11-06 03:05:54 +00:00
|
|
|
int fd = open_or_warn(*argv, O_RDONLY);
|
|
|
|
if (fd >= 0) {
|
2008-01-27 23:41:34 +00:00
|
|
|
off_t len;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
/* fdlength was reported to be unreliable - use seek */
|
|
|
|
len = xlseek(fd, 0, SEEK_END);
|
|
|
|
xlseek(fd, 0, SEEK_SET);
|
|
|
|
r = readahead(fd, 0, len);
|
2007-11-06 03:05:54 +00:00
|
|
|
close(fd);
|
2008-01-27 23:41:34 +00:00
|
|
|
if (r >= 0)
|
|
|
|
continue;
|
2006-08-20 22:12:18 +00:00
|
|
|
}
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|