svn commit: r270825 - head/sys/sys

John Baldwin jhb at FreeBSD.org
Fri Aug 29 20:50:50 UTC 2014


Author: jhb
Date: Fri Aug 29 20:50:49 2014
New Revision: 270825
URL: http://svnweb.freebsd.org/changeset/base/270825

Log:
  Add the new shm_ino field to struct shmfd.  Missed in 270823.
  
  Reported by:	peter
  Pointy hat to:	jhb

Modified:
  head/sys/sys/mman.h

Modified: head/sys/sys/mman.h
==============================================================================
--- head/sys/sys/mman.h	Fri Aug 29 18:26:55 2014	(r270824)
+++ head/sys/sys/mman.h	Fri Aug 29 20:50:49 2014	(r270825)
@@ -219,6 +219,7 @@ struct shmfd {
 	struct timespec	shm_mtime;
 	struct timespec	shm_ctime;
 	struct timespec	shm_birthtime;
+	ino_t		shm_ino;
 
 	struct label	*shm_label;		/* MAC label */
 	const char	*shm_path;


More information about the svn-src-all mailing list