|
NAMEVOP_ALLOCATE —
allocate storage for a file
SYNOPSIS#include <sys/param.h>
#include <sys/vnode.h>
int
DESCRIPTIONThis call allocates storage for a range of offsets in a file. It is used to implement the posix_fallocate system call.Its arguments are:
The offset and len arguments are updated to reflect the portion of the range that still needs to be allocated on return. A partial allocation is considered a successful operation. The file's contents are not changed. LOCKSThe file should be exclusively locked on entry and will still be locked on exit.RETURN VALUESZero is returned if the call is successful, otherwise an appropriate error code is returned.ERRORSSEE ALSOvnode(9), VOP_READ(9), VOP_WRITE(9)
Visit the GSP FreeBSD Man Page Interface. |