mirror of https://github.com/openzfs/zfs.git
FreeBSD: restore zfs_znode_update_vfs()
I accidentally removed this in c22d56e3e
, and didn't notice because it
doesn't fail the build, but does fail to load into the kernel because it
can't link it.
Sponsored-by: https://despairlabs.com/sponsor/
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Signed-off-by: Rob Norris <robn@despairlabs.com>
Closes #16554
This commit is contained in:
parent
f9d4f1b480
commit
80645d6582
|
@ -1779,6 +1779,18 @@ zfs_create_fs(objset_t *os, cred_t *cr, nvlist_t *zplprops, dmu_tx_t *tx)
|
|||
kmem_free(zfsvfs, sizeof (zfsvfs_t));
|
||||
}
|
||||
|
||||
void
|
||||
zfs_znode_update_vfs(znode_t *zp)
|
||||
{
|
||||
vm_object_t object;
|
||||
|
||||
if ((object = ZTOV(zp)->v_object) == NULL ||
|
||||
zp->z_size == object->un_pager.vnp.vnp_size)
|
||||
return;
|
||||
|
||||
vnode_pager_setsize(ZTOV(zp), zp->z_size);
|
||||
}
|
||||
|
||||
int
|
||||
zfs_znode_parent_and_name(znode_t *zp, znode_t **dzpp, char *buf)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue