getnewvnode.9 (8c3308035afd1af413b0c2fa9ac2c5619c27fd02) | getnewvnode.9 (8723b451f9593e6cf42d63bf67ddc93c48359007) |
---|---|
1.\" 2.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice(s), this list of conditions and the following disclaimer as --- 37 unchanged lines hidden (view full) --- 46The vnode is either freshly allocated, or taken from the head of the 47free list depending on the number of vnodes already in the system. 48.Pp 49The arguments to 50.Fn getnewvnode 51are: 52.Bl -tag -width ".Fa vops" 53.It Fa tag | 1.\" 2.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice(s), this list of conditions and the following disclaimer as --- 37 unchanged lines hidden (view full) --- 46The vnode is either freshly allocated, or taken from the head of the 47free list depending on the number of vnodes already in the system. 48.Pp 49The arguments to 50.Fn getnewvnode 51are: 52.Bl -tag -width ".Fa vops" 53.It Fa tag |
54The filesystem type string. This field should only be referenced for 55debugging or for userland utilities. | 54The filesystem type string. 55This field should only be referenced for debugging or for userland utilities. |
56.It Fa mp 57The mount point to add the new vnode to. 58.It Fa vops 59The vnode operations to assign to the new vnode. 60.It Fa vpp 61Points to the new vnode upon successful completion. 62.El 63.Sh RETURN VALUES 64.Fn getnewvnode 65returns 0 on success. 66There are currently no failure conditions - that do not result in a panic. 67.Sh AUTHORS 68This man page was written by 69.An Chad David Aq davidc@acns.ab.ca . | 56.It Fa mp 57The mount point to add the new vnode to. 58.It Fa vops 59The vnode operations to assign to the new vnode. 60.It Fa vpp 61Points to the new vnode upon successful completion. 62.El 63.Sh RETURN VALUES 64.Fn getnewvnode 65returns 0 on success. 66There are currently no failure conditions - that do not result in a panic. 67.Sh AUTHORS 68This man page was written by 69.An Chad David Aq davidc@acns.ab.ca . |