From owner-p4-projects@FreeBSD.ORG Tue May 25 20:23:14 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8D0441065675; Tue, 25 May 2010 20:23:14 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 518C91065672 for ; Tue, 25 May 2010 20:23:14 +0000 (UTC) (envelope-from kibab@FreeBSD.org) Received: from repoman.freebsd.org (unknown [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F5E18FC0A for ; Tue, 25 May 2010 20:23:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o4PKNEol000312 for ; Tue, 25 May 2010 20:23:14 GMT (envelope-from kibab@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o4PKNEUx000310 for perforce@freebsd.org; Tue, 25 May 2010 20:23:14 GMT (envelope-from kibab@FreeBSD.org) Date: Tue, 25 May 2010 20:23:14 GMT Message-Id: <201005252023.o4PKNEUx000310@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to kibab@FreeBSD.org using -f From: Ilya Bakulin To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 178774 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 May 2010 20:23:14 -0000 http://p4web.freebsd.org/@@178774?ac=10 Change 178774 by kibab@kibab_kibab-nb on 2010/05/25 20:22:56 New features: - ffs_snapshot: if the kernel has support for FFS snapshots; - softupdates: if soft-updates support is compiled into kernel; - ufs_acl: indicates support for POSIX.1e compliant ACLs on UFS file systems; - ufs_gjournal: journaling support for UFS. Reviewed by: Alexander Leidinger (mentor) Affected files ... .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ffs/ffs_snapshot.c#3 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ffs/ffs_softdep.c#3 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ufs/ufs_acl.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ufs/ufs_vnops.c#2 edit Differences ... ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ffs/ffs_snapshot.c#3 (text+ko) ==== @@ -124,6 +124,7 @@ } #else +FEATURE(ffs_snapshot, "FFS snapshot support"); TAILQ_HEAD(snaphead, inode); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ffs/ffs_softdep.c#3 (text+ko) ==== @@ -576,6 +576,9 @@ } #else + +FEATURE(softupdates, "FFS soft-updates support"); + /* * These definitions need to be adapted to the system to which * this file is being ported. ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ufs/ufs_acl.c#2 (text+ko) ==== @@ -57,6 +57,8 @@ #ifdef UFS_ACL +FEATURE(ufs_acl, "POSIX.1e ACL support for UFS"); + /* * Synchronize an ACL and an inode by copying over appropriate inode fields * to the passed ACL. Assumes an ACL that would satisfy acl_posix1e_check(), ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/ufs/ufs/ufs_vnops.c#2 (text+ko) ==== @@ -84,6 +84,7 @@ #endif #ifdef UFS_GJOURNAL #include +FEATURE(ufs_gjournal, "Journaling support through GEOM for UFS"); #endif #include