Remove unused union member, fifos on tmpfs are implemented in common code.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2017-01-19 13:35:14 +00:00
parent 805ca1775e
commit 9e3ff5c594
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312407

View File

@ -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);