svn commit: r211174 - stable/8/sys/compat/freebsd32

Konstantin Belousov kib at FreeBSD.org
Wed Aug 11 09:04:38 UTC 2010


Author: kib
Date: Wed Aug 11 09:04:36 2010
New Revision: 211174
URL: http://svn.freebsd.org/changeset/base/211174

Log:
  MFC r210848:
  Copy inode birthtime to the struct stat32.

Modified:
  stable/8/sys/compat/freebsd32/freebsd32_misc.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cam/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_misc.c	Wed Aug 11 08:58:27 2010	(r211173)
+++ stable/8/sys/compat/freebsd32/freebsd32_misc.c	Wed Aug 11 09:04:36 2010	(r211174)
@@ -1637,6 +1637,7 @@ copy_stat(struct stat *in, struct stat32
 	CP(*in, *out, st_blksize);
 	CP(*in, *out, st_flags);
 	CP(*in, *out, st_gen);
+	TS_CP(*in, *out, st_birthtimespec);
 }
 
 int


More information about the svn-src-stable-8 mailing list