aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRyan Moeller <[email protected]>2020-11-04 21:47:14 +0000
committerBrian Behlendorf <[email protected]>2020-12-23 14:34:59 -0800
commit86e74dc162bd41c61b5876ea15c17da3e516ef39 (patch)
treef250ec16efaa05db06c4e1537b258262a2606b1c /include
parentb3d723fb0ede3a735a3b97c65898197973b0b8ff (diff)
Remove redundant oid parameter to update_pages
The oid comes from the znode we are already passing. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Matt Macy <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Signed-off-by: Ryan Moeller <[email protected]> Closes #11176
Diffstat (limited to 'include')
-rw-r--r--include/sys/zfs_vnops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/zfs_vnops.h b/include/sys/zfs_vnops.h
index e59925342..6b5d9726c 100644
--- a/include/sys/zfs_vnops.h
+++ b/include/sys/zfs_vnops.h
@@ -34,6 +34,6 @@ extern int zfs_setsecattr(znode_t *zp, vsecattr_t *vsecp, int flag, cred_t *cr);
extern int mappedread(znode_t *, int, uio_t *);
extern int mappedread_sf(znode_t *, int, uio_t *);
-extern void update_pages(znode_t *, int64_t, int, objset_t *, uint64_t);
+extern void update_pages(znode_t *, int64_t, int, objset_t *);
#endif