diff options
author | alc <alc@FreeBSD.org> | 1999-07-16 05:11:37 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 1999-07-16 05:11:37 +0000 |
commit | ab1033c8353731697f2c1ba3aa4908375a5b3d3c (patch) | |
tree | ef7b2cbbb06f9e299d92f27601f4b9f412881242 /sys/vm/swap_pager.c | |
parent | 7e710934a0b5e0debab4f9edb0e2eed6318a7eaa (diff) | |
download | FreeBSD-src-ab1033c8353731697f2c1ba3aa4908375a5b3d3c.zip FreeBSD-src-ab1033c8353731697f2c1ba3aa4908375a5b3d3c.tar.gz |
Remove vm_object::last_read. It is used by the old swap pager, but
not by the new one, i.e., vm/swap_pager.c rev 1.108.
Reviewed by: dillon@backplane.com
Diffstat (limited to 'sys/vm/swap_pager.c')
-rw-r--r-- | sys/vm/swap_pager.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/vm/swap_pager.c b/sys/vm/swap_pager.c index 37be6cc..45bb363 100644 --- a/sys/vm/swap_pager.c +++ b/sys/vm/swap_pager.c @@ -64,7 +64,7 @@ * * @(#)swap_pager.c 8.9 (Berkeley) 3/21/94 * - * $Id: swap_pager.c,v 1.119 1999/06/26 02:46:46 mckusick Exp $ + * $Id: swap_pager.c,v 1.120 1999/06/27 22:08:38 peter Exp $ */ #include <sys/param.h> @@ -1193,7 +1193,6 @@ swap_pager_getpages(object, m, count, reqpage) if (mreq->valid != VM_PAGE_BITS_ALL) { return(VM_PAGER_ERROR); } else { - mreq->object->last_read = lastpindex; return(VM_PAGER_OK); } |