From owner-cvs-src-old@FreeBSD.ORG Tue Sep 21 07:01:16 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8102610657C7 for ; Tue, 21 Sep 2010 07:01:16 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6F7F08FC1E for ; Tue, 21 Sep 2010 07:01:16 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o8L71Gwi045079 for ; Tue, 21 Sep 2010 07:01:16 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o8L71GDd045078 for cvs-src-old@freebsd.org; Tue, 21 Sep 2010 07:01:16 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201009210701.o8L71GDd045078@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Tue, 21 Sep 2010 07:01:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/fs/tmpfs tmpfs.h tmpfs_subr.c tmpfs_vnops.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Sep 2010 07:01:16 -0000 ed 2010-09-21 07:01:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/fs/tmpfs tmpfs.h tmpfs_subr.c tmpfs_vnops.c Log: SVN rev 212953 on 2010-09-21 07:01:00Z by ed MFC r211598: Add support for whiteouts on tmpfs. Right now unionfs only allows filesystems to be mounted on top of another if it supports whiteouts. Even though I have sent a patch to daichi@ to let unionfs work without it, we'd better also add support for whiteouts to tmpfs. This patch implements .vop_whiteout and makes necessary changes to lookup() and readdir() to take them into account. We must also make sure that when adding or removing a file, we honour the componentname's DOWHITEOUT and ISWHITEOUT, to prevent duplicate filenames. Revision Changes Path 1.17.2.2 +4 -1 src/sys/fs/tmpfs/tmpfs.h 1.23.2.2 +71 -37 src/sys/fs/tmpfs/tmpfs_subr.c 1.31.2.2 +41 -2 src/sys/fs/tmpfs/tmpfs_vnops.c