blob: 7a2263437434a9646c77d24be8b10c2dec185621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* fallocate.c - Preallocate space to a file
*
* Copyright 2013 Felix Janda <felix.janda@posteo.de>
*
* No standard
USE_FALLOCATE(NEWTOY(fallocate, ">1l#|", TOYFLAG_USR|TOYFLAG_BIN))
config FALLOCATE
bool "fallocate"
depends on TOYBOX_FALLOCATE
default y
help
usage: fallocate [-l size] file
Tell the filesystem to allocate space for a file.
*/
#define FOR_fallocate
#include "toys.h"
GLOBALS(
long size;
)
void fallocate_main(void)
{
int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
if (posix_fallocate(fd, 0, TT.size)) error_exit("Not enough space");
if (CFG_TOYBOX_FREE) close(fd);
}
|