1 /* vi: set sw=4 ts=4: */
3 * readahead implementation for busybox
5 * Preloads the given files in RAM, to reduce access time.
6 * Does this by calling the readahead(2) system call.
8 * Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com>
10 * Licensed under GPLv2 or later, see file License in this tarball for details.
15 int readahead_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
16 int readahead_main(int argc, char **argv)
18 int retval = EXIT_SUCCESS;
20 if (argc == 1) bb_show_usage();
23 int fd = open_or_warn(*argv, O_RDONLY);
28 /* fdlength was reported to be unreliable - use seek */
29 len = xlseek(fd, 0, SEEK_END);
30 xlseek(fd, 0, SEEK_SET);
31 r = readahead(fd, 0, len);
36 retval = EXIT_FAILURE;