logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

getnewvnode — get a new vnode

Authors

       This manual page was written by Chad David <davidc@acns.ab.ca>.

Debian                                          November 21, 2001                                 GETNEWVNODE(9)

Description

       The  getnewvnode()  function  initializes  a new vnode, assigning it the vnode operations passed in vops.
       The vnode is either freshly allocated, or taken from the head of the free list depending on the number of
       vnodes already in the system.

       The arguments to getnewvnode() are:

       tag   The file system type string.  This field should only be referenced for debugging  or  for  userland
             utilities.

       mp    The mount point to add the new vnode to.

       vops  The vnode operations to assign to the new vnode.

       vpp   Points to the new vnode upon successful completion.

Name

       getnewvnode — get a new vnode

Return Values

getnewvnode()  returns 0 on success.  There are currently no failure conditions - that do not result in a
       panic.

Synopsis

#include<sys/param.h>#include<sys/vnode.h>#include<sys/mount.h>intgetnewvnode(constchar*tag, structmount*mp, vop_t**vops, structvnode**vpp);

See Also