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

Konstantin Belousov kib at FreeBSD.org
Wed Apr 12 09:11:17 UTC 2017


Author: kib
Date: Wed Apr 12 09:11:16 2017
New Revision: 316724
URL: https://svnweb.freebsd.org/changeset/base/316724

Log:
  MFC r316524:
  Use int instead of boolean_t for flags argument type in
  vnode_pager_generic_putpages() prototype; change the argument name to
  reflect that it is flags.

Modified:
  stable/11/sys/vm/vnode_pager.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/vm/vnode_pager.h
==============================================================================
--- stable/11/sys/vm/vnode_pager.h	Wed Apr 12 07:21:54 2017	(r316723)
+++ stable/11/sys/vm/vnode_pager.h	Wed Apr 12 09:11:16 2017	(r316724)
@@ -44,8 +44,7 @@ int vnode_pager_generic_getpages(struct 
     int count, int *rbehind, int *rahead, vop_getpages_iodone_t iodone,
     void *arg);
 int vnode_pager_generic_putpages(struct vnode *vp, vm_page_t *m,
-					  int count, boolean_t sync,
-					  int *rtvals);
+    int count, int flags, int *rtvals);
 int vnode_pager_local_getpages(struct vop_getpages_args *ap);
 int vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap);
 


More information about the svn-src-stable mailing list