svn commit: r283669 - head/sys/fs/ext2fs

Pedro F. Giffuni pfg at FreeBSD.org
Thu May 28 21:07:00 UTC 2015


Author: pfg
Date: Thu May 28 21:06:59 2015
New Revision: 283669
URL: https://svnweb.freebsd.org/changeset/base/283669

Log:
  Provide VOP_GETPAGES_ASYNC() for extfs.
  
  Merge the filesystem specific part from r274914 to ext2fs.
  
  I only did regular testing with the change but UFS and our ext2fs
  are similar enough that the code should just work with the new
  sendfile.
  
  Discussed with:	glebius

Modified:
  head/sys/fs/ext2fs/ext2_vnops.c

Modified: head/sys/fs/ext2fs/ext2_vnops.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_vnops.c	Thu May 28 20:56:11 2015	(r283668)
+++ head/sys/fs/ext2fs/ext2_vnops.c	Thu May 28 21:06:59 2015	(r283669)
@@ -128,6 +128,7 @@ struct vop_vector ext2_vnodeops = {
 	.vop_create =		ext2_create,
 	.vop_fsync =		ext2_fsync,
 	.vop_getpages =		vnode_pager_local_getpages,
+	.vop_getpages_async =	vnode_pager_local_getpages_async,
 	.vop_getattr =		ext2_getattr,
 	.vop_inactive =		ext2_inactive,
 	.vop_ioctl =		ext2_ioctl,


More information about the svn-src-head mailing list