2000-03-05 03:53:27 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-03-14 08:10:51 +05:30
|
|
|
* freeramdisk and fdflush implementations for busybox
|
2000-03-05 03:53:27 +05:30
|
|
|
*
|
|
|
|
* Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it>
|
2003-07-15 02:51:08 +05:30
|
|
|
* Adjusted a bit by Erik Andersen <andersen@codepoet.org>
|
2006-03-14 08:10:51 +05:30
|
|
|
* Unified with fdflush by Tito Ragusa <farmatito@tiscali.it>
|
2000-03-05 03:53:27 +05:30
|
|
|
*
|
2006-03-14 08:10:51 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-03-05 03:53:27 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2003-09-15 13:42:53 +05:30
|
|
|
#include <unistd.h>
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2006-03-19 04:32:45 +05:30
|
|
|
/* From linux/fs.h */
|
|
|
|
#define BLKFLSBUF _IO(0x12,97)
|
|
|
|
/* From <linux/fd.h> */
|
|
|
|
#define FDFLUSH _IO(2,0x4b)
|
|
|
|
|
2006-03-15 01:36:44 +05:30
|
|
|
int freeramdisk_main(int argc, char **argv)
|
2000-03-05 03:53:27 +05:30
|
|
|
{
|
2003-03-07 23:39:06 +05:30
|
|
|
int result;
|
2003-05-08 18:39:28 +05:30
|
|
|
int fd;
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2006-03-14 08:10:51 +05:30
|
|
|
if (argc != 2) bb_show_usage();
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2003-05-08 18:39:28 +05:30
|
|
|
fd = bb_xopen(argv[1], O_RDWR);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-03-14 08:10:51 +05:30
|
|
|
// Act like freeramdisk, fdflush, or both depending on configuration.
|
2006-03-18 21:29:29 +05:30
|
|
|
result = ioctl(fd, (ENABLE_FREERAMDISK && bb_applet_name[1]=='r')
|
2006-03-19 04:32:45 +05:30
|
|
|
|| !ENABLE_FDFLUSH ? BLKFLSBUF : FDFLUSH);
|
2005-09-08 08:41:58 +05:30
|
|
|
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) close(fd);
|
|
|
|
|
2006-03-14 08:10:51 +05:30
|
|
|
if (result) bb_perror_msg_and_die("%s", argv[1]);
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-03-05 03:53:27 +05:30
|
|
|
}
|