fuse: unbreak after r364814

Reported by:	kevans
This commit is contained in:
mjg 2020-08-26 21:13:36 +00:00
parent c4e3995f0e
commit 0fb3fb5022

View File

@ -1035,8 +1035,9 @@ fuse_vnop_lookup(struct vop_lookup_args *ap)
filesize = 0;
} else {
struct timespec now, timeout;
int ncpticks; /* here to accomodate for API contract */
err = cache_lookup(dvp, vpp, cnp, &timeout, NULL);
err = cache_lookup(dvp, vpp, cnp, &timeout, &ncpticks);
getnanouptime(&now);
SDT_PROBE3(fusefs, , vnops, cache_lookup, err, &timeout, &now);
switch (err) {