mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-29 03:40:06 +08:00
0c4a07264e
badblocks.c, e2fsck.h, ehandler.c, emptydir.c, extend.c, flushb.c, iscan.c, message.c, pass1.c, pass1b.c, pass3.c pass4.c, pass5.c, problem.c, scantest.c, swapfs.c, unix.c, util.c: Add Internationalization support as suggested by Marco d'Itri <md@linux.it>.
56 lines
880 B
C
56 lines
880 B
C
/*
|
|
* flushb.c --- This routine flushes the disk buffers for a disk
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
#ifdef __STDC__
|
|
#define NOARGS void
|
|
#else
|
|
#define NOARGS
|
|
#define const
|
|
#endif
|
|
|
|
const char *progname;
|
|
|
|
static void usage(NOARGS)
|
|
{
|
|
fprintf(stderr, _("Usage: %s disk\n"), progname);
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int fd;
|
|
|
|
progname = argv[0];
|
|
if (argc != 2)
|
|
usage();
|
|
|
|
fd = open(argv[1], O_RDONLY, 0);
|
|
if (fd < 0) {
|
|
perror("open");
|
|
exit(1);
|
|
}
|
|
/*
|
|
* Note: to reread the partition table, use the ioctl
|
|
* BLKRRPART instead of BLKFSLBUF.
|
|
*/
|
|
#ifdef BLKFLSBUF
|
|
if (ioctl(fd, BLKFLSBUF, 0) < 0) {
|
|
perror("ioctl BLKFLSBUF");
|
|
exit(1);
|
|
}
|
|
return 0;
|
|
#else
|
|
fprintf(stderr,
|
|
_("BLKFLSBUF ioctl not supported! Can't flush buffers.\n"));
|
|
return 1;
|
|
#endif
|
|
}
|