zfs_enter rework followup

The zpl_fadvise() function was recently added and was not included
in the initial patch.  Update it accordingly.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #13831
This commit is contained in:
Brian Behlendorf 2022-09-16 14:22:52 -07:00
parent 4df8ccc83d
commit 7dee043af5
1 changed files with 3 additions and 3 deletions

View File

@ -930,8 +930,8 @@ zpl_fadvise(struct file *filp, loff_t offset, loff_t len, int advice)
if (offset < 0 || len < 0) if (offset < 0 || len < 0)
return (-EINVAL); return (-EINVAL);
ZFS_ENTER(zfsvfs); if ((error = zpl_enter_verify_zp(zfsvfs, zp, FTAG)) != 0)
ZFS_VERIFY_ZP(zp); return (error);
switch (advice) { switch (advice) {
case POSIX_FADV_SEQUENTIAL: case POSIX_FADV_SEQUENTIAL:
@ -963,7 +963,7 @@ zpl_fadvise(struct file *filp, loff_t offset, loff_t len, int advice)
break; break;
} }
ZFS_EXIT(zfsvfs); zfs_exit(zfsvfs, FTAG);
return (error); return (error);
} }