Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jul 2013 22:06:41 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r253331 - head/sys/fs/fuse
Message-ID:  <201307132206.r6DM6f8t087186@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Sat Jul 13 22:06:41 2013
New Revision: 253331
URL: http://svnweb.freebsd.org/changeset/base/253331

Log:
  Add creation timestamp (birthtime) support for fuse.
  
  I was keeping this #ifdef'd for reference with the MacFUSE change[1]
  but on second thought, this is a FreeBSD-only header so the SVN
  history should be enough.
  
  Add missing padding while here.
  
  Reference [1]:
  http://code.google.com/p/macfuse/source/detail?spec=svn1686&r=1360

Modified:
  head/sys/fs/fuse/fuse_kernel.h

Modified: head/sys/fs/fuse/fuse_kernel.h
==============================================================================
--- head/sys/fs/fuse/fuse_kernel.h	Sat Jul 13 21:24:25 2013	(r253330)
+++ head/sys/fs/fuse/fuse_kernel.h	Sat Jul 13 22:06:41 2013	(r253331)
@@ -69,20 +69,17 @@ struct fuse_attr {
 	__u64	atime;
 	__u64	mtime;
 	__u64	ctime;
-#ifdef __FreeBSD__
 	__u64	crtime;
-#endif
 	__u32	atimensec;
 	__u32	mtimensec;
 	__u32	ctimensec;
-#ifdef __FreeBSD__
 	__u32	crtimensec;
-#endif
 	__u32	mode;
 	__u32	nlink;
 	__u32	uid;
 	__u32	gid;
 	__u32	rdev;
+	__u32	padding;
 };
 
 struct fuse_kstatfs {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307132206.r6DM6f8t087186>