diff options
author | kib <kib@FreeBSD.org> | 2017-01-26 10:43:36 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2017-01-26 10:43:36 +0000 |
commit | d97f264e71bfbad8c6a8ca276f38e788a5e2f2ef (patch) | |
tree | 4411b162f6129b9c7ed0f3412f8aa788bfcf65b5 | |
parent | f6a6a017d67fb660186a8f3b958a7e66c9f4ee86 (diff) | |
download | FreeBSD-src-d97f264e71bfbad8c6a8ca276f38e788a5e2f2ef.zip FreeBSD-src-d97f264e71bfbad8c6a8ca276f38e788a5e2f2ef.tar.gz |
MFC r312407:
Remove unused union member, fifos on tmpfs are implemented in common code.
-rw-r--r-- | sys/fs/tmpfs/tmpfs.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/fs/tmpfs/tmpfs.h b/sys/fs/tmpfs/tmpfs.h index 8cd1c4b..a4fb10f 100644 --- a/sys/fs/tmpfs/tmpfs.h +++ b/sys/fs/tmpfs/tmpfs.h @@ -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); |