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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2003-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*/
#include "platform_defs.h"
#include "command.h"
#include "init.h"
#include "io.h"
static cmdinfo_t fsync_cmd;
static cmdinfo_t fdatasync_cmd;
static int
fsync_f(
int argc,
char **argv)
{
if (fsync(file->fd) < 0) {
perror("fsync");
exitcode = 1;
return 0;
}
return 0;
}
static int
fdatasync_f(
int argc,
char **argv)
{
if (fdatasync(file->fd) < 0) {
perror("fdatasync");
exitcode = 1;
return 0;
}
return 0;
}
void
fsync_init(void)
{
fsync_cmd.name = "fsync";
fsync_cmd.altname = "s";
fsync_cmd.cfunc = fsync_f;
fsync_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
fsync_cmd.oneline =
_("calls fsync(2) to flush all in-core file state to disk");
fdatasync_cmd.name = "fdatasync";
fdatasync_cmd.altname = "ds";
fdatasync_cmd.cfunc = fdatasync_f;
fdatasync_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
fdatasync_cmd.oneline =
_("calls fdatasync(2) to flush the files in-core data to disk");
add_command(&fsync_cmd);
add_command(&fdatasync_cmd);
}
|