svn commit: r326131 - stable/11/sys/vm

Mark Johnston markj at FreeBSD.org
Thu Nov 23 14:03:12 UTC 2017


Author: markj
Date: Thu Nov 23 14:03:10 2017
New Revision: 326131
URL: https://svnweb.freebsd.org/changeset/base/326131

Log:
  MFC r325528:
  Correct the type of foff.

Modified:
  stable/11/sys/vm/vm_mmap.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/vm/vm_mmap.c
==============================================================================
--- stable/11/sys/vm/vm_mmap.c	Thu Nov 23 14:02:35 2017	(r326130)
+++ stable/11/sys/vm/vm_mmap.c	Thu Nov 23 14:03:10 2017	(r326131)
@@ -1196,7 +1196,7 @@ vm_mmap_vnode(struct thread *td, vm_size_t objsize,
 {
 	struct vattr va;
 	vm_object_t obj;
-	vm_offset_t foff;
+	vm_ooffset_t foff;
 	struct ucred *cred;
 	int error, flags, locktype;
 


More information about the svn-src-all mailing list