unplugged-system/external/toybox/toys/other/fsfreeze.c

31 lines
507 B
C
Raw Normal View History

/* fsfreeze.c - freeze or thaw filesystem
*
* No standard.
USE_FSFREEZE(NEWTOY(fsfreeze, "<1>1f|u|[!fu]", TOYFLAG_USR|TOYFLAG_SBIN))
config FSFREEZE
bool "fsfreeze"
default y
help
usage: fsfreeze {-f | -u} MOUNTPOINT
Freeze or unfreeze a filesystem.
-f Freeze
-u Unfreeze
*/
#define FOR_fsfreeze
#include "toys.h"
#include <linux/fs.h>
void fsfreeze_main(void)
{
int fd = xopenro(*toys.optargs);
long p = 1;
xioctl(fd, FLAG(f) ? FIFREEZE : FITHAW, &p);
xclose(fd);
}