Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/fs/tmpfs/tmpfs_subr.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/fs/tmpfs/tmpfs_subr.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.103 retrieving revision 1.103.2.1 diff -u -p -r1.103 -r1.103.2.1 --- src/sys/fs/tmpfs/tmpfs_subr.c 2018/05/28 21:04:35 1.103 +++ src/sys/fs/tmpfs/tmpfs_subr.c 2019/06/10 22:09:01 1.103.2.1 @@ -1,4 +1,4 @@ -/* $NetBSD: tmpfs_subr.c,v 1.103 2018/05/28 21:04:35 chs Exp $ */ +/* $NetBSD: tmpfs_subr.c,v 1.103.2.1 2019/06/10 22:09:01 christos Exp $ */ /* * Copyright (c) 2005-2013 The NetBSD Foundation, Inc. @@ -73,7 +73,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.103 2018/05/28 21:04:35 chs Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.103.2.1 2019/06/10 22:09:01 christos Exp $"); #include #include @@ -177,7 +177,7 @@ tmpfs_loadvnode(struct mount *mp, struct */ int tmpfs_newvnode(struct mount *mp, struct vnode *dvp, struct vnode *vp, - struct vattr *vap, kauth_cred_t cred, + struct vattr *vap, kauth_cred_t cred, void *extra, size_t *key_len, const void **new_key) { tmpfs_mount_t *tmp = VFS_TO_TMPFS(mp); @@ -390,7 +390,7 @@ tmpfs_construct_node(vnode_t *dvp, vnode } /* Allocate a vnode that represents the new file. */ - error = vcache_new(dvp->v_mount, dvp, vap, cnp->cn_cred, vpp); + error = vcache_new(dvp->v_mount, dvp, vap, cnp->cn_cred, NULL, vpp); if (error) { if (slink != NULL) tmpfs_strname_free(tmp, slink, ssize);