uipc_shm.c (2619c5ccfe1f7889f0241916bd17d06340142b05) uipc_shm.c (f28526e9466cd60ed33053e922238ba1c9040341)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2006, 2011, 2016-2017 Robert N. M. Watson
5 * Copyright 2020 The FreeBSD Foundation
6 * All rights reserved.
7 *
8 * Portions of this software were developed by BAE Systems, the University of

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

164 .fo_sendfile = vn_sendfile,
165 .fo_seek = shm_seek,
166 .fo_fill_kinfo = shm_fill_kinfo,
167 .fo_mmap = shm_mmap,
168 .fo_get_seals = shm_get_seals,
169 .fo_add_seals = shm_add_seals,
170 .fo_fallocate = shm_fallocate,
171 .fo_fspacectl = shm_fspacectl,
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2006, 2011, 2016-2017 Robert N. M. Watson
5 * Copyright 2020 The FreeBSD Foundation
6 * All rights reserved.
7 *
8 * Portions of this software were developed by BAE Systems, the University of

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

164 .fo_sendfile = vn_sendfile,
165 .fo_seek = shm_seek,
166 .fo_fill_kinfo = shm_fill_kinfo,
167 .fo_mmap = shm_mmap,
168 .fo_get_seals = shm_get_seals,
169 .fo_add_seals = shm_add_seals,
170 .fo_fallocate = shm_fallocate,
171 .fo_fspacectl = shm_fspacectl,
172 .fo_cmp = file_kcmp_generic,
172 .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE,
173};
174
175FEATURE(posix_shm, "POSIX shared memory");
176
177static SYSCTL_NODE(_vm, OID_AUTO, largepages, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
178 "");
179

--- 2007 unchanged lines hidden ---
173 .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE,
174};
175
176FEATURE(posix_shm, "POSIX shared memory");
177
178static SYSCTL_NODE(_vm, OID_AUTO, largepages, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
179 "");
180

--- 2007 unchanged lines hidden ---