uipc_mqueue.c (685dc743dc3b5645e34836464128e1c0558b404b) uipc_mqueue.c (f28526e9466cd60ed33053e922238ba1c9040341)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
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

--- 2647 unchanged lines hidden (view full) ---

2656 .fo_poll = mqf_poll,
2657 .fo_kqfilter = mqf_kqfilter,
2658 .fo_stat = mqf_stat,
2659 .fo_close = mqf_close,
2660 .fo_chmod = mqf_chmod,
2661 .fo_chown = mqf_chown,
2662 .fo_sendfile = invfo_sendfile,
2663 .fo_fill_kinfo = mqf_fill_kinfo,
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
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

--- 2647 unchanged lines hidden (view full) ---

2656 .fo_poll = mqf_poll,
2657 .fo_kqfilter = mqf_kqfilter,
2658 .fo_stat = mqf_stat,
2659 .fo_close = mqf_close,
2660 .fo_chmod = mqf_chmod,
2661 .fo_chown = mqf_chown,
2662 .fo_sendfile = invfo_sendfile,
2663 .fo_fill_kinfo = mqf_fill_kinfo,
2664 .fo_cmp = file_kcmp_generic,
2664 .fo_flags = DFLAG_PASSABLE,
2665};
2666
2667static struct vop_vector mqfs_vnodeops = {
2668 .vop_default = &default_vnodeops,
2669 .vop_access = mqfs_access,
2670 .vop_cachedlookup = mqfs_lookup,
2671 .vop_lookup = vfs_cache_lookup,

--- 266 unchanged lines hidden ---
2665 .fo_flags = DFLAG_PASSABLE,
2666};
2667
2668static struct vop_vector mqfs_vnodeops = {
2669 .vop_default = &default_vnodeops,
2670 .vop_access = mqfs_access,
2671 .vop_cachedlookup = mqfs_lookup,
2672 .vop_lookup = vfs_cache_lookup,

--- 266 unchanged lines hidden ---