Date: Thu, 26 Jan 2017 10:41:56 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r312800 - stable/11/sys/fs/tmpfs Message-ID: <201701261041.v0QAfu8w045462@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Thu Jan 26 10:41:56 2017 New Revision: 312800 URL: https://svnweb.freebsd.org/changeset/base/312800 Log: MFC r312407: Remove unused union member, fifos on tmpfs are implemented in common code. Modified: stable/11/sys/fs/tmpfs/tmpfs.h Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/fs/tmpfs/tmpfs.h ============================================================================== --- stable/11/sys/fs/tmpfs/tmpfs.h Thu Jan 26 10:35:04 2017 (r312799) +++ stable/11/sys/fs/tmpfs/tmpfs.h Thu Jan 26 10:41:56 2017 (r312800) @@ -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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701261041.v0QAfu8w045462>