Introduce per-file "clean" flag which tells whether the file is synchronized or
not. This flag is not really used so far.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
int link_count;
unsigned int check_run_no; /* Run number used when checking */
unsigned int no_space_error:1; /* File has incurred a ENOSPC error */
+ unsigned int clean:1; /* Non-zero if the file is synchronized */
};
struct symlink_info /* Each symlink has one of these */
{
int ret;
+ file->clean = 0;
+
if (!args.power_cut_mode && fsinfo.can_mmap && !full &&
file->link_count && random_no(100) == 1) {
/*
pcv("fdatasync failed for %s",
file->links->name);
}
+ file->clean = 1;
}
return 0;
int ret;
size_t new_length = random_no(file->length);
-
+ file->clean = 0;
ret = file_ftruncate(file, fd, new_length);
if (ret == -1)
return -1;