mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
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
ba4e582a67
commit
84ad1d5366
1 changed files with 12 additions and 0 deletions
|
|
@ -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 a new issue