Move the comment describing namei(9) back to namei()'s definition.
MFC after: 3 days
This commit is contained in:
parent
31d81a4316
commit
947401dd50
@ -99,6 +99,16 @@ static int lookup_shared = 1;
|
|||||||
SYSCTL_INT(_vfs, OID_AUTO, lookup_shared, CTLFLAG_RWTUN, &lookup_shared, 0,
|
SYSCTL_INT(_vfs, OID_AUTO, lookup_shared, CTLFLAG_RWTUN, &lookup_shared, 0,
|
||||||
"Enables/Disables shared locks for path name translation");
|
"Enables/Disables shared locks for path name translation");
|
||||||
|
|
||||||
|
static void
|
||||||
|
namei_cleanup_cnp(struct componentname *cnp)
|
||||||
|
{
|
||||||
|
uma_zfree(namei_zone, cnp->cn_pnbuf);
|
||||||
|
#ifdef DIAGNOSTIC
|
||||||
|
cnp->cn_pnbuf = NULL;
|
||||||
|
cnp->cn_nameptr = NULL;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Convert a pathname into a pointer to a locked vnode.
|
* Convert a pathname into a pointer to a locked vnode.
|
||||||
*
|
*
|
||||||
@ -119,16 +129,6 @@ SYSCTL_INT(_vfs, OID_AUTO, lookup_shared, CTLFLAG_RWTUN, &lookup_shared, 0,
|
|||||||
* if symbolic link, massage name in buffer and continue
|
* if symbolic link, massage name in buffer and continue
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
static void
|
|
||||||
namei_cleanup_cnp(struct componentname *cnp)
|
|
||||||
{
|
|
||||||
uma_zfree(namei_zone, cnp->cn_pnbuf);
|
|
||||||
#ifdef DIAGNOSTIC
|
|
||||||
cnp->cn_pnbuf = NULL;
|
|
||||||
cnp->cn_nameptr = NULL;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
namei(struct nameidata *ndp)
|
namei(struct nameidata *ndp)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user