svn commit: r352419 - stable/12/sys/fs/fuse

Mark Johnston markj at FreeBSD.org
Mon Sep 16 18:40:28 UTC 2019


Author: markj
Date: Mon Sep 16 18:40:27 2019
New Revision: 352419
URL: https://svnweb.freebsd.org/changeset/base/352419

Log:
  MFC r351613:
  Remove unused VM page locking macros.
  
  This completes the merge of the revision.  r352043 updated only the merge
  info for some reason.
  
  Reported by:	alc

Modified:
  stable/12/sys/fs/fuse/fuse_vnops.c

Modified: stable/12/sys/fs/fuse/fuse_vnops.c
==============================================================================
--- stable/12/sys/fs/fuse/fuse_vnops.c	Mon Sep 16 18:23:01 2019	(r352418)
+++ stable/12/sys/fs/fuse/fuse_vnops.c	Mon Sep 16 18:40:27 2019	(r352419)
@@ -226,11 +226,6 @@ struct vop_vector fuse_vnops = {
 
 int	fuse_pbuf_freecnt = -1;
 
-#define fuse_vm_page_lock(m)		vm_page_lock((m));
-#define fuse_vm_page_unlock(m)		vm_page_unlock((m));
-#define fuse_vm_page_lock_queues()	((void)0)
-#define fuse_vm_page_unlock_queues()	((void)0)
-
 /* Check permission for extattr operations, much like extattr_check_cred */
 static int
 fuse_extattr_check_cred(struct vnode *vp, int ns, struct ucred *cred,


More information about the svn-src-stable-12 mailing list