2006-08-21 03:42:18 +05:30
|
|
|
/* 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>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-08-21 03:42:18 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int readahead_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2010-01-04 18:45:38 +05:30
|
|
|
int readahead_main(int argc UNUSED_PARAM, char **argv)
|
2006-08-21 03:42:18 +05:30
|
|
|
{
|
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
|
2010-01-04 18:45:38 +05:30
|
|
|
if (!argv[1]) {
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
2006-08-21 03:42:18 +05:30
|
|
|
|
|
|
|
while (*++argv) {
|
2007-11-06 08:35:54 +05:30
|
|
|
int fd = open_or_warn(*argv, O_RDONLY);
|
|
|
|
if (fd >= 0) {
|
2008-01-28 05:11:34 +05:30
|
|
|
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 08:35:54 +05:30
|
|
|
close(fd);
|
2008-01-28 05:11:34 +05:30
|
|
|
if (r >= 0)
|
|
|
|
continue;
|
2006-08-21 03:42:18 +05:30
|
|
|
}
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|