From owner-cvs-all@FreeBSD.ORG Tue Oct 26 06:25:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47A5116A4CF; Tue, 26 Oct 2004 06:25:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA5843D54; Tue, 26 Oct 2004 06:25:57 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i9Q6PvnA072769; Tue, 26 Oct 2004 06:25:57 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9Q6PvBL072768; Tue, 26 Oct 2004 06:25:57 GMT (envelope-from phk) Message-Id: <200410260625.i9Q6PvBL072768@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 26 Oct 2004 06:25:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys conf.h src/sys/ufs/ffs ffs_extern.h ffs_snapshot.c ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Oct 2004 06:25:57 -0000 phk 2004-10-26 06:25:56 UTC FreeBSD src repository Modified files: sys/sys conf.h sys/ufs/ffs ffs_extern.h ffs_snapshot.c ffs_softdep.c Log: Degeneralize the per cdev copyonwrite callback. The only possible value is ffs_copyonwrite() and the only place it can be called from is FFS which would never want to call another filesystems copyonwrite method, should one exist, so there is no reason why anything generic should know about this. Revision Changes Path 1.205 +0 -2 src/sys/sys/conf.h 1.59 +1 -1 src/sys/ufs/ffs/ffs_extern.h 1.88 +1 -6 src/sys/ufs/ffs/ffs_snapshot.c 1.160 +2 -2 src/sys/ufs/ffs/ffs_softdep.c