Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Dec 2018 18:54:10 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r342381 - head/sys/ufs/ffs
Message-ID:  <201812231854.wBNIsAC3090998@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Dec 23 18:54:09 2018
New Revision: 342381
URL: https://svnweb.freebsd.org/changeset/base/342381

Log:
  Allocate v_object for the new snapshot vnode.
  
  The vnode is not opened, so it ends up with the malloced buffers otherwise.
  
  Reported and tested by:	pho
  MFC after:	1 week
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/ufs/ffs/ffs_snapshot.c

Modified: head/sys/ufs/ffs/ffs_snapshot.c
==============================================================================
--- head/sys/ufs/ffs/ffs_snapshot.c	Sun Dec 23 18:52:02 2018	(r342380)
+++ head/sys/ufs/ffs/ffs_snapshot.c	Sun Dec 23 18:54:09 2018	(r342381)
@@ -302,6 +302,7 @@ restart:
 		return (error);
 	}
 	vp = nd.ni_vp;
+	vnode_create_vobject(nd.ni_vp, fs->fs_size, td);
 	vp->v_vflag |= VV_SYSTEM;
 	ip = VTOI(vp);
 	devvp = ITODEVVP(ip);



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