Manual Page Search Parameters

VN_DEALLOCATE(9) Kernel Developer's Manual VN_DEALLOCATE(9)

vn_deallocatezero and/or deallocate storage from a file

#include <sys/param.h>
#include <sys/vnode.h>

int
vn_deallocate(struct vnode *vp, off_t *offset, off_t *length, int flags, int ioflag, struct ucred *active_cred, struct ucred *file_cred);

The () function zeros and/or deallocates backing storage space from a file. This function only works on vnodes with VREG type.

The arguments are:

vp
The vnode of the file.
offset
The starting offset of the operation range.
length
The length of the operation range. This must be greater than 0.
flags
The control flags of the operation. This should be set to 0 for now.
ioflag
Directives and hints to be given to the file system.
active_cred
The user credentials of the calling thread.
file_cred
The credentials installed on the file description pointing to the vnode or NOCRED.

The () argument gives directives and hints to the file system. It may include one or more of the following flags:

The vnode was locked before the call.
Rangelock was owned around the call.
Skip MAC checking in the call.
Do I/O synchronously.
Attempt to bypass buffer cache.

*offset and *length are updated to reflect the unprocessed operation range of the call. For a successful completion, *length is updated to be the value 0, and *offset is incremented by the number of bytes zeroed before the end-of-file.

Upon successful completion, the value 0 is returned; otherwise the appropriate error is returned.

vnode(9), VOP_DEALLOCATE(9)

vn_deallocate and this manual page was written by Ka Ho Ng <khng@FreeBSD.org> under sponsorship from the FreeBSD Foundation.

August 25, 2021 dev