diff options
author | jhb <jhb@FreeBSD.org> | 2012-02-06 17:00:28 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2012-02-06 17:00:28 +0000 |
commit | 1a6892cbe765f81bb0881e5206ece5fca2be33f2 (patch) | |
tree | 2bc10a8159c667f59ed6faecbee298104af7dc82 /sys/fs/smbfs | |
parent | 10fb6673e8872813e1d696e3dd3c20ec7b5e1933 (diff) | |
download | FreeBSD-src-1a6892cbe765f81bb0881e5206ece5fca2be33f2.zip FreeBSD-src-1a6892cbe765f81bb0881e5206ece5fca2be33f2.tar.gz |
Rename cache_lookup_times() to cache_lookup() and retire the old API and
ABI stub for cache_lookup().
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r-- | sys/fs/smbfs/smbfs_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/smbfs/smbfs_vnops.c b/sys/fs/smbfs/smbfs_vnops.c index a236ca7..99cbec5 100644 --- a/sys/fs/smbfs/smbfs_vnops.c +++ b/sys/fs/smbfs/smbfs_vnops.c @@ -1131,7 +1131,7 @@ smbfs_lookup(ap) if (error) return ENOENT; - error = cache_lookup(dvp, vpp, cnp); + error = cache_lookup(dvp, vpp, cnp, NULL, NULL); SMBVDEBUG("cache_lookup returned %d\n", error); if (error > 0) return error; |