uipc_mqueue.c (b249ce48ea5560afdcff57e72a9880b7d3132434) | uipc_mqueue.c (42ec4f05a38f8c2b8d7eaa96d2b5dd542c3c9c4a) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2005 David Xu <davidxu@freebsd.org> 5 * Copyright (c) 2016-2017 Robert N. M. Watson 6 * All rights reserved. 7 * 8 * Portions of this software were developed by BAE Systems, the University of --- 2655 unchanged lines hidden (view full) --- 2664 .fo_poll = mqf_poll, 2665 .fo_kqfilter = mqf_kqfilter, 2666 .fo_stat = mqf_stat, 2667 .fo_close = mqf_close, 2668 .fo_chmod = mqf_chmod, 2669 .fo_chown = mqf_chown, 2670 .fo_sendfile = invfo_sendfile, 2671 .fo_fill_kinfo = mqf_fill_kinfo, | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2005 David Xu <davidxu@freebsd.org> 5 * Copyright (c) 2016-2017 Robert N. M. Watson 6 * All rights reserved. 7 * 8 * Portions of this software were developed by BAE Systems, the University of --- 2655 unchanged lines hidden (view full) --- 2664 .fo_poll = mqf_poll, 2665 .fo_kqfilter = mqf_kqfilter, 2666 .fo_stat = mqf_stat, 2667 .fo_close = mqf_close, 2668 .fo_chmod = mqf_chmod, 2669 .fo_chown = mqf_chown, 2670 .fo_sendfile = invfo_sendfile, 2671 .fo_fill_kinfo = mqf_fill_kinfo, |
2672 .fo_flags = DFLAG_PASSABLE, |
|
2672}; 2673 2674static struct vop_vector mqfs_vnodeops = { 2675 .vop_default = &default_vnodeops, 2676 .vop_access = mqfs_access, 2677 .vop_cachedlookup = mqfs_lookup, 2678 .vop_lookup = vfs_cache_lookup, 2679 .vop_reclaim = mqfs_reclaim, --- 265 unchanged lines hidden --- | 2673}; 2674 2675static struct vop_vector mqfs_vnodeops = { 2676 .vop_default = &default_vnodeops, 2677 .vop_access = mqfs_access, 2678 .vop_cachedlookup = mqfs_lookup, 2679 .vop_lookup = vfs_cache_lookup, 2680 .vop_reclaim = mqfs_reclaim, --- 265 unchanged lines hidden --- |