From owner-svn-src-all@FreeBSD.ORG Wed Aug 28 22:23:11 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2BC44CA5 for ; Wed, 28 Aug 2013 22:23:11 +0000 (UTC) (envelope-from bryan@shatow.net) Received: from secure.xzibition.com (secure.xzibition.com [173.160.118.92]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D940F2CBB for ; Wed, 28 Aug 2013 22:23:10 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=shatow.net; h=mime-version :content-type:content-transfer-encoding:date:from:to:subject :in-reply-to:references:message-id; q=dns; s=sweb; b=Smwu0HSOGZa XUg9NMGm42365Az/hCM5GF9aE8XNZDx2X7L3ZTEYQ39MIczmbB+NEmMrxDhqg5Cq QcLbfuN6b6KlR/l4Cj07HYpb/XrjAVU9892pFmXhxaVpz1GCFCBRoKlNdlNsRF3r xCZAlsiG0EePrQkPlteQ1Kp7+Q+FKVGM= DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=shatow.net; h= mime-version:content-type:content-transfer-encoding:date:from:to :subject:in-reply-to:references:message-id; s=sweb; bh=GFGJwLXTr yjM0H1uVqPihPpcDdzaOjtD2f3p/Spkdf0=; b=M1ZG7Q69Y4y+MdOgIeeRtGH+e dXiTfyrPn3N5XwN92yzUpMjj9L8K/SIL7jYjW95Ypa+w3yrpWbh47s7kQQoADiEe G3sBcMd/oRKg88G4cqX7YbynaRIhp9yiDmw241Q3bulilzYFVaQRnp1/e1uLmkS3 S+WiTxrnmxkeP43nwE= Received: (qmail 55400 invoked from network); 28 Aug 2013 17:23:03 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 28 Aug 2013 17:23:03 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 28 Aug 2013 17:23:03 -0500 From: Bryan Drewery To: svn-src-all@freebsd.org Subject: Re: svn commit: r255008 - head/sys/fs/tmpfs In-Reply-To: <201308282212.r7SMCuRV026492@svn.freebsd.org> References: <201308282212.r7SMCuRV026492@svn.freebsd.org> Message-ID: <8a1a211c20ea4b3ddd276c278ffb6a3d@shatow.net> X-Sender: bryan@shatow.net User-Agent: Roundcube Webmail/0.9.2 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Aug 2013 22:23:11 -0000 On 2013-08-28 17:12, Kenneth D. Merry wrote: > Author: ken > Date: Wed Aug 28 22:12:56 2013 > New Revision: 255008 > URL: http://svnweb.freebsd.org/changeset/base/255008 > > Log: > Support storing 7 additional file flags in tmpfs: > > UF_SYSTEM, UF_SPARSE, UF_OFFLINE, UF_REPARSE, UF_ARCHIVE, > UF_READONLY, > and UF_HIDDEN. > > Sort the file flags tmpfs supports alphabetically. tmpfs now > supports the same flags as UFS, with the exception of SF_SNAPSHOT. > > Reported by: bdrewery, antoine > Sponsored by: Spectra Logic > > Modified: > head/sys/fs/tmpfs/tmpfs_subr.c > Thanks!