/* XFS_IOC_SETBIOSIZE ---- deprecated 46 */
/* XFS_IOC_GETBIOSIZE ---- deprecated 47 */
#define XFS_IOC_GETBMAPX _IOWR('X', 56, struct getbmap)
+#define XFS_IOC_ZERO_RANGE _IOW ('X', 57, struct xfs_flock64)
/*
* ioctl commands that replace IRIX syssgi()'s
static cmdinfo_t freesp_cmd;
static cmdinfo_t resvsp_cmd;
static cmdinfo_t unresvsp_cmd;
+static cmdinfo_t zero_cmd;
#if defined(HAVE_FALLOCATE)
static cmdinfo_t falloc_cmd;
#endif
return 0;
}
+static int
+zero_f(
+ int argc,
+ char **argv)
+{
+ xfs_flock64_t segment;
+
+ if (!offset_length(argv[1], argv[2], &segment))
+ return 0;
+
+ if (xfsctl(file->name, file->fd, XFS_IOC_ZERO_RANGE, &segment) < 0) {
+ perror("XFS_IOC_ZERO_RANGE");
+ return 0;
+ }
+ return 0;
+}
+
+
#if defined (HAVE_FALLOCATE)
static int
fallocate_f(
unresvsp_cmd.oneline =
_("frees reserved space associated with part of a file");
+ zero_cmd.name = _("zero");
+ zero_cmd.cfunc = zero_f;
+ zero_cmd.argmin = 2;
+ zero_cmd.argmax = 2;
+ zero_cmd.flags = CMD_NOMAP_OK;
+ zero_cmd.args = _("off len");
+ zero_cmd.oneline =
+ _("Converts the given range of a file to allocated zeros");
+
add_command(&allocsp_cmd);
add_command(&freesp_cmd);
add_command(&resvsp_cmd);
add_command(&unresvsp_cmd);
+ add_command(&zero_cmd);
#if defined (HAVE_FALLOCATE)
falloc_cmd.name = _("falloc");
Partial filesystem blocks are zeroed, and whole filesystem blocks are
removed from the file. The file size does not change.
+.TP
+.B XFS_IOC_ZERO_RANGE
+This command is used to convert a range of a file to zeros without issuing data
+IO.
+A range of bytes is specified using a pointer to a variable of type
+.B xfs_flock64_t
+in the final argument.
+Blocks are preallocated for regions that span holes in the file, and the entire
+range is converted to unwritten extents.
+This operation is a fast method of overwriting any from the range specified
+with zeros without removing any blocks or having to write zeros to disk.
+Any subsequent read in the given range will return zeros until new data is
+written.
+This functionality requires filesystems to support unwritten extents.
+If
+.BR xfs_info (8)
+reports unwritten=1, then the filesystem was made to flag unwritten extents.
+
.\" .TP
.\" .B XFS_IOC_GETBIOSIZE
.\" This command gets information about the preferred buffered I/O