svn commit: r312801 - stable/10/sys/fs/tmpfs

Konstantin Belousov kib at FreeBSD.org
Thu Jan 26 10:43:38 UTC 2017


Author: kib
Date: Thu Jan 26 10:43:36 2017
New Revision: 312801
URL: https://svnweb.freebsd.org/changeset/base/312801

Log:
  MFC r312407:
  Remove unused union member, fifos on tmpfs are implemented in common code.

Modified:
  stable/10/sys/fs/tmpfs/tmpfs.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/fs/tmpfs/tmpfs.h
==============================================================================
--- stable/10/sys/fs/tmpfs/tmpfs.h	Thu Jan 26 10:41:56 2017	(r312800)
+++ stable/10/sys/fs/tmpfs/tmpfs.h	Thu Jan 26 10:43:36 2017	(r312801)
@@ -259,12 +259,6 @@ struct tmpfs_node {
 			vm_object_t		tn_aobj;
 
 		}tn_reg;
-
-		/* Valid when tn_type = VFIFO */
-		struct tn_fifo {
-			fo_rdwr_t		*tn_fo_read;
-			fo_rdwr_t		*tn_fo_write;
-		}tn_fifo;
 	}tn_spec;
 };
 LIST_HEAD(tmpfs_node_list, tmpfs_node);


More information about the svn-src-all mailing list