You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
617 B
31 lines
617 B
7 months ago
|
/* fallocate.c - Preallocate space to a file
|
||
|
*
|
||
|
* Copyright 2013 Felix Janda <felix.janda@posteo.de>
|
||
|
*
|
||
|
* No standard
|
||
|
|
||
|
USE_FALLOCATE(NEWTOY(fallocate, ">1l#|o#", TOYFLAG_USR|TOYFLAG_BIN))
|
||
|
|
||
|
config FALLOCATE
|
||
|
bool "fallocate"
|
||
|
default y
|
||
|
help
|
||
|
usage: fallocate [-l size] [-o offset] file
|
||
|
|
||
|
Tell the filesystem to allocate space for a file.
|
||
|
*/
|
||
|
|
||
|
#define FOR_fallocate
|
||
|
#include "toys.h"
|
||
|
|
||
|
GLOBALS(
|
||
|
long o, l;
|
||
|
)
|
||
|
|
||
|
void fallocate_main(void)
|
||
|
{
|
||
|
int fd = xcreate(*toys.optargs, O_RDWR | O_CREAT, 0644);
|
||
|
if ((errno = posix_fallocate(fd, TT.o, TT.l))) perror_exit("fallocate");
|
||
|
if (CFG_TOYBOX_FREE) close(fd);
|
||
|
}
|