Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Sep 2019 18:40:27 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r352419 - stable/12/sys/fs/fuse
Message-ID:  <201909161840.x8GIeR5s097441@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909161840.x8GIeR5s097441>