<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/include/protocols/dumprestore.h, branch release/8.1.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.1.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.1.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2010-07-17T05:41:01Z</updated>
<entry>
<title>Copy releng/8.1 to release/8.1.0 for 8.1-RELEASE.</title>
<updated>2010-07-17T05:41:01Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2010-07-17T05:41:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=90d6fa76a8141fc596ad376ecd86a8a493836298'/>
<id>urn:sha1:90d6fa76a8141fc596ad376ecd86a8a493836298</id>
<content type='text'>
Approved by:	re (implicit)

This commit was manufactured to restore the state of the 8.1-RELEASE image.
</content>
</entry>
<entry>
<title>Expand dump to allow MAX_INT dump levels.</title>
<updated>2008-05-24T05:20:46Z</updated>
<author>
<name>Kirk McKusick</name>
<email>mckusick@FreeBSD.org</email>
</author>
<published>2008-05-24T05:20:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f72ab79315e95e06d34784aef96cc36372b15cc1'/>
<id>urn:sha1:f72ab79315e95e06d34784aef96cc36372b15cc1</id>
<content type='text'>
PR:           bin/100732
Submitted by: Matthew Vincenz &lt;msvincen@midway.uchicago.edu&gt;
</content>
</entry>
<entry>
<title>Update the dump program to save extended attributes. Update</title>
<updated>2007-02-26T08:15:56Z</updated>
<author>
<name>Kirk McKusick</name>
<email>mckusick@FreeBSD.org</email>
</author>
<published>2007-02-26T08:15:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=772ad651bf7af82b57558e5a6268e3961e9c2ad8'/>
<id>urn:sha1:772ad651bf7af82b57558e5a6268e3961e9c2ad8</id>
<content type='text'>
the restore program to restore all dumped extended attributes.

If the restore is running as root, it will always be able
to restore all extended attributes. If it is not running
as root, it makes a best effort to set them. Using the -v
command line flag or the `verbose' command in interactive
mode will display all the extended attributes being set on
files (and at the end on directories) that are being restored.
It will note any extended attributes that could not be set.

The extended attributes are placed on the dump image immediately
following each file's data. Older versions of restore can work
with the newer dump images. Old versions of restore will
correctly restore the file data and then (silently) skip
over the extended attribute data and proceed to the next file.

This resolves PR 93085 which will be closed once the code
has been MFC'ed.

Note that this code will not compile until these header
files have been updated: &lt;protocols/dumprestore.h&gt; and
&lt;sys/extattr.h&gt;.

PR:		bin/93085
Comments from:	Poul-Henning Kamp and Robert Watson
MFC after:	3 weeks
</content>
</entry>
<entry>
<title>Change utimes to set the file creation time (for filesystems that</title>
<updated>2002-07-17T02:03:19Z</updated>
<author>
<name>Kirk McKusick</name>
<email>mckusick@FreeBSD.org</email>
</author>
<published>2002-07-17T02:03:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=fb36a3d8472e3b7c446b5501635ec34eb1ebaa00'/>
<id>urn:sha1:fb36a3d8472e3b7c446b5501635ec34eb1ebaa00</id>
<content type='text'>
support creation times such as UFS2) to the value of the
modification time if the value of the modification time is older
than the current creation time. See utimes(2) for further details.

Sponsored by:	DARPA &amp; NAI Labs.
</content>
</entry>
<entry>
<title>This commit adds basic support for the UFS2 filesystem. The UFS2</title>
<updated>2002-06-21T06:18:05Z</updated>
<author>
<name>Kirk McKusick</name>
<email>mckusick@FreeBSD.org</email>
</author>
<published>2002-06-21T06:18:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1c85e6a35d93195e896b030d9a55f7ac4ccee2c3'/>
<id>urn:sha1:1c85e6a35d93195e896b030d9a55f7ac4ccee2c3</id>
<content type='text'>
filesystem expands the inode to 256 bytes to make space for 64-bit
block pointers. It also adds a file-creation time field, an ability
to use jumbo blocks per inode to allow extent like pointer density,
and space for extended attributes (up to twice the filesystem block
size worth of attributes, e.g., on a 16K filesystem, there is space
for 32K of attributes). UFS2 fully supports and runs existing UFS1
filesystems. New filesystems built using newfs can be built in either
UFS1 or UFS2 format using the -O option. In this commit UFS1 is
the default format, so if you want to build UFS2 format filesystems,
you must specify -O 2. This default will be changed to UFS2 when
UFS2 proves itself to be stable. In this commit the boot code for
reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c)
as there is insufficient space in the boot block. Once the size of the
boot block is increased, this code can be defined.

Things to note: the definition of SBSIZE has changed to SBLOCKSIZE.
The header file &lt;ufs/ufs/dinode.h&gt; must be included before
&lt;ufs/ffs/fs.h&gt; so as to get the definitions of ufs2_daddr_t and
ufs_lbn_t.

Still TODO:
Verify that the first level bootstraps work for all the architectures.
Convert the utility ffsinfo to understand UFS2 and test growfs.
Add support for the extended attribute storage. Update soft updates
to ensure integrity of extended attribute storage. Switch the
current extended attribute interfaces to use the extended attribute
storage. Add the extent like functionality (framework is there,
but is currently never used).

Sponsored by: DARPA &amp; NAI Labs.
Reviewed by:	Poul-Henning Kamp &lt;phk@freebsd.org&gt;
</content>
</entry>
<entry>
<title>Use explicitly sized fields for the tape format definition.</title>
<updated>2002-05-14T06:59:55Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2002-05-14T06:59:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=950e983e03857bdeb40ad8d3258f97c11759af61'/>
<id>urn:sha1:950e983e03857bdeb40ad8d3258f97c11759af61</id>
<content type='text'>
Sponsored by:	DARPA &amp; NAI Labs.
</content>
</entry>
<entry>
<title>Make the protocol/dumprestore.h header match restore's idea of the dump</title>
<updated>2001-10-28T20:01:38Z</updated>
<author>
<name>Matthew Dillon</name>
<email>dillon@FreeBSD.org</email>
</author>
<published>2001-10-28T20:01:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=5b3817c60b5d4e7ac21b4576f820cad7e853b5d9'/>
<id>urn:sha1:5b3817c60b5d4e7ac21b4576f820cad7e853b5d9</id>
<content type='text'>
header for the case where sizeof(time_t) != sizeof(int).  dumprestore.h
was embedding time_t when it should have been embedding int32_t.

Use time_to_time32() and time32_to_time() to convert between the
protocoll/file-format time and time_t.
</content>
</entry>
<entry>
<title>16 characters for the device name in /etc/dumpdates is not long</title>
<updated>1999-05-08T01:08:56Z</updated>
<author>
<name>Jacques Vidrine</name>
<email>nectar@FreeBSD.org</email>
</author>
<published>1999-05-08T01:08:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=958ab463b8e4b2642d0c07dfcea361aac60484c4'/>
<id>urn:sha1:958ab463b8e4b2642d0c07dfcea361aac60484c4</id>
<content type='text'>
enough, particularly when using vinum.  Allow 32 characters
(arbitrary, I know) instead.

PR:	bin/11433
</content>
</entry>
<entry>
<title>64bit fixes.</title>
<updated>1998-10-27T04:01:19Z</updated>
<author>
<name>Dima Ruban</name>
<email>dima@FreeBSD.org</email>
</author>
<published>1998-10-27T04:01:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=97b465b14297c2c7194fa40f473e5103ae167d27'/>
<id>urn:sha1:97b465b14297c2c7194fa40f473e5103ae167d27</id>
<content type='text'>
(Note: ``dump'' doesn't work on alpha yet. Apparently there's a problem
somewhere is the physio() area)

Submitted by:	myself &amp;&amp; Matt Dillon.
</content>
</entry>
<entry>
<title>Back out all of yesterdays include file changes.</title>
<updated>1997-05-07T20:01:10Z</updated>
<author>
<name>Eivind Eklund</name>
<email>eivind@FreeBSD.org</email>
</author>
<published>1997-05-07T20:01:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=f756433e8b87d0739ea5865dd78e946db0614108'/>
<id>urn:sha1:f756433e8b87d0739ea5865dd78e946db0614108</id>
<content type='text'>
</content>
</entry>
</feed>
