aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/freeramdisk.c
blob: 8ff4e75cfd29450b610be82279e577183a5429a9 (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
/* freeramdisk.c - Free all memory allocated to ramdisk
 *
 * Copyright 2014 Vivek Kumar Bhagat <vivek.bhagat89@gmail.com>
 *
 * No Standard

USE_FREERAMDISK(NEWTOY(freeramdisk, "<1>1", TOYFLAG_SBIN|TOYFLAG_NEEDROOT))

config FREERAMDISK
  bool "freeramdisk"
  default n
  help
    usage: freeramdisk <RAM device>

    Free all memory allocated to specified ramdisk
*/

#include "toys.h"

void freeramdisk_main(void)
{
	int fd;

	fd = xopen(toys.optargs[0], O_RDWR);
	xioctl(fd, BLKFLSBUF, toys.optargs[0]);
	xclose(fd);
}