Skip to content

Commit

Permalink
Signed-off-by: Rick Macklem <[email protected]>
Browse files Browse the repository at this point in the history
Add the VFCF_FILEREV flag

The flag VFCF_FILEREV was recently defined in FreeBSD
so that a file system could indicate that it increments
va_filerev by one for each change.

Since ZFS does do this, set the flag if defined for the
kernel being built.  This allows the NFSv4.2 server to
reply with the correct change_attr_type attribute value.
  • Loading branch information
rmacklem committed Jan 22, 2025
1 parent 59a7751 commit c07fd82
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions module/os/freebsd/zfs/zfs_vfsops.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,14 @@ struct vfsops zfs_vfsops = {
.vfs_quotactl = zfs_quotactl,
};

VFS_SET(zfs_vfsops, zfs, VFCF_DELEGADMIN | VFCF_JAIL
#ifdef VFCF_CROSS_COPY_FILE_RANGE
VFS_SET(zfs_vfsops, zfs,
VFCF_DELEGADMIN | VFCF_JAIL | VFCF_CROSS_COPY_FILE_RANGE);
#else
VFS_SET(zfs_vfsops, zfs, VFCF_DELEGADMIN | VFCF_JAIL);
| VFCF_CROSS_COPY_FILE_RANGE
#endif
#ifdef VFCF_FILEREVINC
| VFCF_FILEREVINC
#endif
);

/*
* We need to keep a count of active fs's.
Expand Down

0 comments on commit c07fd82

Please sign in to comment.