summaryrefslogtreecommitdiff
path: root/src/sys/include/sys/namei.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-30 20:45:13 -0400
committerIan Moffett <ian@osmora.org>2025-09-30 20:54:02 -0400
commit9ae4315557c894b211e1d47e77a846066ebff5bb (patch)
treeb2fea372da42f6bafa7f585c23dba177c7053324 /src/sys/include/sys/namei.h
parentd5884fab8d7f0556db4d1f0635107238be82c0dc (diff)
kern: Add initial pirho compiler sources
The pirho compiler is a ring-0 compiler used to compile core parts of the kernel during updates and installs from the initramfs. Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/sys/namei.h')
-rw-r--r--src/sys/include/sys/namei.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/include/sys/namei.h b/src/sys/include/sys/namei.h
index 588dbd3..58307b1 100644
--- a/src/sys/include/sys/namei.h
+++ b/src/sys/include/sys/namei.h
@@ -38,12 +38,12 @@
*
* @path: Full path to lookup
* @flags: Flags to use
- * @vp: Vnode result is written here
+ * @vp_res: Vnode result is written here
*/
struct nameidata {
const char *path;
uint32_t flags;
- struct vnode *vp;
+ struct vnode **vp_res;
};
#if defined(_KERNEL)