freebsd-dev/sys/sys
Gleb Smirnoff 779f106aa1 Listening sockets improvements.
o Separate fields of struct socket that belong to listening from
  fields that belong to normal dataflow, and unionize them.  This
  shrinks the structure a bit.
  - Take out selinfo's from the socket buffers into the socket. The
    first reason is to support braindamaged scenario when a socket is
    added to kevent(2) and then listen(2) is cast on it. The second
    reason is that there is future plan to make socket buffers pluggable,
    so that for a dataflow socket a socket buffer can be changed, and
    in this case we also want to keep same selinfos through the lifetime
    of a socket.
  - Remove struct struct so_accf. Since now listening stuff no longer
    affects struct socket size, just move its fields into listening part
    of the union.
  - Provide sol_upcall field and enforce that so_upcall_set() may be called
    only on a dataflow socket, which has buffers, and for listening sockets
    provide solisten_upcall_set().

o Remove ACCEPT_LOCK() global.
  - Add a mutex to socket, to be used instead of socket buffer lock to lock
    fields of struct socket that don't belong to a socket buffer.
  - Allow to acquire two socket locks, but the first one must belong to a
    listening socket.
  - Make soref()/sorele() to use atomic(9).  This allows in some situations
    to do soref() without owning socket lock.  There is place for improvement
    here, it is possible to make sorele() also to lock optionally.
  - Most protocols aren't touched by this change, except UNIX local sockets.
    See below for more information.

o Reduce copy-and-paste in kernel modules that accept connections from
  listening sockets: provide function solisten_dequeue(), and use it in
  the following modules: ctl(4), iscsi(4), ng_btsocket(4), ng_ksocket(4),
  infiniband, rpc.

o UNIX local sockets.
  - Removal of ACCEPT_LOCK() global uncovered several races in the UNIX
    local sockets.  Most races exist around spawning a new socket, when we
    are connecting to a local listening socket.  To cover them, we need to
    hold locks on both PCBs when spawning a third one.  This means holding
    them across sonewconn().  This creates a LOR between pcb locks and
    unp_list_lock.
  - To fix the new LOR, abandon the global unp_list_lock in favor of global
    unp_link_lock.  Indeed, separating these two locks didn't provide us any
    extra parralelism in the UNIX sockets.
  - Now call into uipc_attach() may happen with unp_link_lock hold if, we
    are accepting, or without unp_link_lock in case if we are just creating
    a socket.
  - Another problem in UNIX sockets is that uipc_close() basicly did nothing
    for a listening socket.  The vnode remained opened for connections.  This
    is fixed by removing vnode in uipc_close().  Maybe the right way would be
    to do it for all sockets (not only listening), simply move the vnode
    teardown from uipc_detach() to uipc_close()?

Sponsored by:		Netflix
Differential Revision:	https://reviews.freebsd.org/D9770
2017-06-08 21:30:34 +00:00
..
disk Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_bitset.h bitset: introduce helpers to allocate a bitset at runtime 2016-05-06 16:41:23 +00:00
_bus_dma.h
_callout.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_cpuset.h Fix <sys/_bitset.h> and <sys/_cpuset.h> to not require <sys/param.h>. 2016-05-05 15:43:26 +00:00
_ffcounter.h
_iovec.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_kstack_cache.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_lock.h
_lockmgr.h
_mutex.h
_null.h
_pctrie.h
_pthreadtypes.h
_rmlock.h
_rwlock.h Drop the 3rd clause from all 3 clause BSD licenses where I am the sole 2014-02-05 18:13:27 +00:00
_semaphore.h
_sigset.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_sockaddr_storage.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_stack.h
_stdint.h Move intmax_t and uintmax_t type declarations to sys/_stdint.h to give 2015-11-07 12:30:43 +00:00
_sx.h
_task.h Update iflib to support more NIC designs 2016-08-12 21:29:44 +00:00
_termios.h Use __BSD_VISIBLE test instead checking for absense of _POSIX_SOURCE. 2017-05-24 09:25:13 +00:00
_timespec.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
_timeval.h
_types.h Define a new __INO64 macro in <sys/_types.h>, to indicate the system 2017-05-26 16:29:55 +00:00
_ucontext.h POSIX states that #include <signal.h> shall make both mcontext_t and 2016-02-12 07:38:19 +00:00
_umtx.h Add implementation of robust mutexes, hopefully close enough to the 2016-05-17 09:56:22 +00:00
_unrhdr.h
_vm_domain.h Add an initial NUMA affinity/policy configuration for threads and processes. 2015-07-11 15:21:37 +00:00
aac_ioctl.h
acct.h Commit the 64-bit inode project. 2017-05-23 09:29:05 +00:00
acl.h Expose an interface to determine if an ACE is inherited. 2015-09-04 00:14:20 +00:00
agpio.h
aio.h Account for AIO socket operations in thread/process resource usage. 2016-06-21 22:19:06 +00:00
alq.h
apm.h Re-apply change 306811 or alternatively, revert change 307385. 2016-10-16 02:43:51 +00:00
assym.h
ata.h "struct ata_params" field "reserved206[2]" actually starts at offset 20*7*. 2017-05-22 23:31:28 +00:00
bio.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
bitset.h Add BIT_OR2(), BIT_AND2(), BIT_NAND2(), BIT_XOR() and BIT_XOR2(). 2017-05-24 10:09:54 +00:00
bitstring.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
blist.h Halve the memory being internally allocated by the blist allocator. In 2017-06-05 17:14:16 +00:00
boot.h howto_names: unify declaration 2014-03-11 10:13:06 +00:00
buf_ring.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
buf.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
bufobj.h Document what the different flags mean for locking. 2017-02-21 18:49:51 +00:00
bus_dma.h Style cleanups after r285270 2015-07-08 22:09:47 +00:00
bus.h Add a INTR_TRIG_INVALID, and use it in the powerpc interrupt code. 2017-01-30 02:21:29 +00:00
busdma_bufalloc.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
callout.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
capability.h Add sys/capability.h deprecation warning 2017-01-25 15:42:29 +00:00
caprights.h
capsicum.h Add PROC_TRAPCAP procctl(2) controls and global sysctl kern.trap_enocap. 2016-09-21 08:23:33 +00:00
cdefs.h Implement the memset_s(3) function as specified by the C11 ISO/IEC 2017-03-30 04:57:26 +00:00
cdio.h
cdrio.h
cfictl.h
chio.h
clock.h Make resettodr_lock accessible outside subr_rtc.c. Protect 2016-09-21 10:15:08 +00:00
cnv.h Remove duplicated declaration. 2016-08-28 07:40:11 +00:00
condvar.h Revert r282971. It depends on condvar consumers not destroying condvars 2015-05-21 16:43:26 +00:00
conf.h Set default uid/gid to nobody/nogroup for NFSv4 mapping. 2017-04-21 20:08:10 +00:00
cons.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
consio.h Remove pc98 support completely. 2017-01-28 02:22:15 +00:00
copyright.h Remove pc98 support completely. 2017-01-28 02:22:15 +00:00
counter.h Provide counter_ratecheck(), a MP-friendly substitution to ppsratecheck(). 2016-12-09 17:58:34 +00:00
cpu.h Add support to get the cpu ID from its device driver in a generic way. 2015-02-19 12:47:48 +00:00
cpuctl.h Restore the ABI of the cpuctl(4) ioctl request CPUCTL_CPUID, use 2014-06-20 13:13:38 +00:00
cpuset.h Extend cpuset_get/setaffinity() APIs 2017-05-03 18:41:08 +00:00
ctype.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
dataacq.h
devicestat.h
devmap.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
digiio.h
dir.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
dirent.h Commit the 64-bit inode project. 2017-05-23 09:29:05 +00:00
disk_zone.h Add support for managing Shingled Magnetic Recording (SMR) drives. 2016-05-19 14:08:36 +00:00
disk.h Add support for encrypted kernel crash dumps. 2016-12-10 16:20:39 +00:00
disklabel.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
diskmbr.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
dkstat.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
dnv.h Remove non-existent dnvlist functions. 2015-07-04 10:33:33 +00:00
domain.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
dtrace_bsd.h Restore the trap type argument to the DTrace trap hook, removed in r268600. 2014-12-23 15:38:19 +00:00
dvdio.h
efi.h Do not try to create /dev/efi device node before devfs is initialized. 2016-10-16 06:07:43 +00:00
efiio.h Create /dev/efidev to provide an ioctl interface to 2016-10-11 22:24:30 +00:00
elf32.h Add remaining ELF compression definitions and structs 2017-01-21 17:39:10 +00:00
elf64.h Add remaining ELF compression definitions and structs 2017-01-21 17:39:10 +00:00
elf_common.h Add support for capturing 'struct ptrace_lwpinfo' for signals 2017-03-30 18:21:36 +00:00
elf_generic.h Define ELF_ST_VISIBILITY(). 2017-02-09 23:32:03 +00:00
elf.h
endian.h
errno.h Only activate __EXT1_VISIBLE block when using sys/errno.h in userspace. 2017-03-30 06:24:30 +00:00
eui64.h
event.h Fix typo. 2017-04-08 04:34:18 +00:00
eventhandler.h ifnet: move the new ifnet_event EVENTHANDLER_DECLARE to net/if_var.h 2017-01-28 07:26:42 +00:00
eventvar.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
exec.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
extattr.h restore(8): Handle extended attribute names correctly 2017-01-18 18:16:57 +00:00
fail.h fail(9): Upstreaming some fail point enhancements 2016-03-16 04:22:32 +00:00
fbio.h Attempt to determine the modes in which 8-bit wide characters are actually 2017-04-20 13:46:55 +00:00
fcntl.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
fdcio.h Remove pc98 support completely. 2017-01-28 02:22:15 +00:00
file.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
filedesc.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
filio.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
firmware.h
fnv_hash.h Remove ia64. 2014-07-07 00:27:09 +00:00
gmon.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
gpio.h GPIO: Add support for gpio pin interrupts. 2016-04-28 12:03:22 +00:00
gpt.h Re-apply change 306811 or alternatively, revert change 307385. 2016-10-16 02:43:51 +00:00
gtaskqueue.h Make gtaskqueue compatible with drm-next such that they can be used with the 2017-03-01 18:37:35 +00:00
gzio.h Reimplement support for userland core dump compression using a new interface 2015-03-09 03:50:53 +00:00
hash.h Add a complete implementation of MurmurHash3. Tweak both implementations 2014-10-18 22:15:11 +00:00
hhook.h Overhaul if_enc(4) and make it loadable in run-time. 2015-11-25 07:31:59 +00:00
iconv.h sys/sys: minor spelling fixes. 2016-05-03 15:14:17 +00:00
imgact_aout.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
imgact_binmisc.h sys/sys: missed in r298981. 2016-05-03 16:37:09 +00:00
imgact_elf.h Update r315753 with the proper flag name. 2017-03-22 22:28:13 +00:00
imgact.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
inflate.h
interrupt.h Extend cpuset_get/setaffinity() APIs 2017-05-03 18:41:08 +00:00
intr.h INTRNG: Rework handling with resources. Partially revert r301453. 2016-08-19 10:52:39 +00:00
ioccom.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ioctl_compat.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ioctl.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
iov_schema.h Clean up repeated "All rights reserved" 2016-03-14 17:41:17 +00:00
iov.h Clean up repeated "All rights reserved" 2016-03-14 17:41:17 +00:00
ipc.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ipmi.h sys/sys: minor spelling fixes. 2016-05-03 15:14:17 +00:00
jail.h Jails: Optionally prevent jailed root from binding to privileged ports 2017-06-06 02:15:00 +00:00
joystick.h
kbio.h
kdb.h
kenv.h
kernel.h Fix TUNABLE_UINT64() on 32bit architectures. 2017-03-27 06:37:03 +00:00
kerneldump.h Add support for encrypted kernel crash dumps. 2016-12-10 16:20:39 +00:00
khelp.h For vendors like Juniper, extensibility for sockets is important. A 2014-08-18 23:45:40 +00:00
kobj.h - Also outside of the KOBJOPLOOKUP macro - which in turn is used by 2017-05-08 21:08:39 +00:00
ksem.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
ksyms.h
kthread.h Add const to char * pointers. This breaks nothing, and means const 2015-06-28 12:52:28 +00:00
ktr_class.h ioat: Introduce KTR probes 2015-10-26 02:21:19 +00:00
ktr.h Expand ktr_mask to be a 64-bit unsigned integer. 2015-05-22 11:09:41 +00:00
ktrace.h Ktracing kevent(2) calls with unusual arguments might leads to an 2017-03-12 13:48:24 +00:00
libkern.h armv8 has support for optional CRC32C instructions. This patch checks if they are 2017-04-27 17:53:05 +00:00
limits.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
link_aout.h
link_elf.h Add rtld private interface for dso to detect dynamic loading 2015-01-03 18:09:53 +00:00
linker_set.h Rename __weak to __weak_symbol to avoid language conflict with objective-C. 2015-06-23 22:40:22 +00:00
linker.h Implement boot-time encryption key passing (keybuf) 2017-04-01 05:05:22 +00:00
lock_profile.h
lock.h Do not turn LOCK_DEBUG for INVARIANT_SUPPORT. This allows to add 2017-03-09 00:58:21 +00:00
lockf.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
lockmgr.h lockmgr: implement fast path 2017-02-12 09:49:44 +00:00
lockstat.h mtx: microoptimize lockstat handling in __mtx_lock_sleep 2017-02-17 14:55:59 +00:00
loginclass.h Doh, commit in a wrong directory. Fix r290857. 2015-11-15 12:50:14 +00:00
mac.h
malloc.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
mbpool.h All mbuf external free functions never fail, so let them be void. 2014-07-11 13:58:48 +00:00
mbuf.h Fixed typo. 2017-04-08 04:41:46 +00:00
mchain.h
md4.h Fix C++ includability of crypto headers with static array sizes 2016-10-18 23:20:49 +00:00
md5.h Fix C++ includability of crypto headers with static array sizes 2016-10-18 23:20:49 +00:00
mdioctl.h Add MD_VERIFY option to enable O_VERIFY in open for vnode type. 2017-05-31 21:18:11 +00:00
memdesc.h
memrange.h sys/sys: minor spelling fixes. 2016-05-03 15:14:17 +00:00
mman.h Implement INHERIT_ZERO for minherit(2). 2017-03-14 17:10:42 +00:00
module_khelp.h
module.h Add the infrastructure to support loading multiple versions of TCP 2017-06-08 20:41:28 +00:00
mount.h Add MD_VERIFY option to enable O_VERIFY in open for vnode type. 2017-05-31 21:18:11 +00:00
mouse.h Add Elantech trackpad support 2016-09-26 22:06:19 +00:00
mpt_ioctl.h
mqueue.h
msg.h Change the return type of msgrcv() to ssize_t as required by POSIX. 2016-07-28 12:22:01 +00:00
msgbuf.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
mtio.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
mutex.h locks: ensure proper barriers are used with atomic ops when necessary 2017-03-01 05:06:21 +00:00
namei.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
nlist_aout.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
numa.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
nv.h Allow libnv to be built externally using GCC. 2016-01-07 20:52:35 +00:00
osd.h osd(9): Change array pointer to array pointer type from void* 2016-04-26 19:57:35 +00:00
param.h Bump _FreeBSD_version after removal of groff 2017-06-08 17:06:16 +00:00
pciio.h Add support for displaying VPD for PCI devices via pciconf. 2014-01-20 20:56:09 +00:00
pcpu.h - Remove 'struct vmmeter' from 'struct pcpu', leaving only global vmmeter 2017-04-17 17:34:47 +00:00
pctrie.h
pioctl.h
pipe.h Fix a variety of cosmetic typos and misspellings 2017-01-15 18:00:45 +00:00
pmc.h Remove a duplicate PMC CPU number 2016-08-03 01:46:55 +00:00
pmckern.h hwpmc: partially depessimize munmap handling if the module is not loaded 2017-01-24 22:00:16 +00:00
pmclog.h
poll.h Add the ppoll() system call. 2014-11-13 05:26:14 +00:00
posix4.h Remove single-use macros obfuscating malloc(9) and free(9) calls. 2015-08-30 17:58:11 +00:00
power.h
priority.h sys/sys: minor spelling fixes. 2016-05-03 15:14:17 +00:00
priv.h Add support to priority code point (PCP) that is an 3-bit field 2016-06-06 09:51:58 +00:00
proc.h Add security.bsd.see_jail_proc 2017-05-23 16:59:24 +00:00
procctl.h Add the foundation copyrights to procctl kernel sources. 2016-09-23 12:32:20 +00:00
procdesc.h Introduce the PD_CLOEXEC for pdfork(2). 2016-06-08 02:09:14 +00:00
procfs.h Include process IDs in core dumps. 2016-07-18 15:14:23 +00:00
protosw.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ptio.h
ptrace.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
queue.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
racct.h Get rid of rctl_lock; use racct_lock where appropriate. The fast paths 2016-04-21 16:22:52 +00:00
random.h Replace the RC4 algorithm for generating in-kernel secure random 2017-04-16 09:11:02 +00:00
rangelock.h
rctl.h Add four new RCTL resources - readbps, readiops, writebps and writeiops, 2016-04-07 04:23:25 +00:00
reboot.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
refcount.h Drop the 3rd clause from all 3 clause BSD licenses where I am the sole 2014-02-05 18:13:27 +00:00
regression.h
resource.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
resourcevar.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
rman.h Consistently use device_t 2016-08-09 19:32:06 +00:00
rmlock.h Add _NEW flag to mtx(9), sx(9), rmlock(9) and rwlock(9). 2014-12-13 21:00:10 +00:00
rtprio.h
runq.h
rwlock.h rwlock: tidy up r313392 2017-02-15 23:33:14 +00:00
sbuf.h Add prototype for sbuf_putbuf() 2017-02-28 19:01:59 +00:00
sched.h Let <sched.h> define struct timespec. 2016-05-31 08:07:40 +00:00
sdt.h Implement LOCKSTAT_OOL_PROFILE_ENABLED 2017-02-08 19:25:58 +00:00
select.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
selinfo.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
sem.h Get function prototypes for msg, shm, sem functions 2015-07-30 18:59:01 +00:00
sema.h
seq.h Remove cpu_spinwait after seq_consistent. 2016-12-30 06:26:17 +00:00
serial.h
sf_buf.h Use bogus_page to properly reduce number of I/Os in sendfile(2). The new 2016-11-17 21:02:55 +00:00
sglist.h Add sglist_append_sglist(). 2017-05-16 23:31:52 +00:00
shm.h Add shmatt_t. 2016-07-26 17:23:49 +00:00
sigio.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
signal.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
signalvar.h Fix typo in comment. 2017-03-09 13:41:57 +00:00
sleepqueue.h When the RTC is adjusted, reevaluate absolute sleep times based on the RTC 2017-03-14 19:06:44 +00:00
slicer.h - Allow different slicers for different flash types to be registered 2017-02-22 10:21:39 +00:00
smp.h Corrected misspelled versions of rendezvous. 2017-04-09 02:00:03 +00:00
snoop.h
sockbuf.h Listening sockets improvements. 2017-06-08 21:30:34 +00:00
socket.h Listening sockets improvements. 2017-06-08 21:30:34 +00:00
socketvar.h Listening sockets improvements. 2017-06-08 21:30:34 +00:00
sockio.h Persistently store NIC's hardware MAC address, and add a way to retrive it 2017-05-10 22:13:47 +00:00
sockopt.h Rename accept filter getopt/setopt functions, so that they are prefixed 2017-06-02 17:49:21 +00:00
sockstate.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
soundcard.h Don't test for INKERNEL to check whether we're in kernel space. 2016-06-04 18:57:00 +00:00
spigenio.h [spigen] add the userland ioctl API for spigen. 2016-05-27 01:40:33 +00:00
stack.h Add stack_save_td_running(), a function to trace the kernel stack of a 2015-09-11 03:54:37 +00:00
stat.h Commit the 64-bit inode project. 2017-05-23 09:29:05 +00:00
statvfs.h
stdatomic.h Rename __wchar_t so it no longer conflicts with __wchar_t from clang 3.4 2014-04-01 14:46:11 +00:00
stddef.h
stdint.h Implement the memset_s(3) function as specified by the C11 ISO/IEC 2017-03-30 04:57:26 +00:00
sun_disklabel.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
sx.h sx: fix mips builld after r313855 2017-02-17 22:09:55 +00:00
syscall.h Regen. 2017-05-23 09:30:42 +00:00
syscall.mk Regen. 2017-05-23 09:30:42 +00:00
syscallsubr.h Commit the 64-bit inode project. 2017-05-23 09:29:05 +00:00
sysctl.h Export a sysctl dev.<clkdom>.<unit>.clocks for each clock domain containing 2017-03-05 07:13:29 +00:00
sysent.h Add some explanation for SV_TIMEKEEP flag. 2017-03-01 12:10:24 +00:00
syslimits.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
syslog.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
sysproto.h Regen. 2017-05-23 09:30:42 +00:00
systm.h Allow sysctl kern.vm_guest to return bhyve when running under bhyve. 2017-06-08 04:02:14 +00:00
taskqueue.h Implement taskqueue_poll_is_busy() for use by the LinuxKPI. 2017-03-02 12:20:23 +00:00
terminal.h vt(4): Adjust the cursor position after changing the window size 2014-11-01 17:05:15 +00:00
termios.h
thr.h
tiio.h
time.h When the RTC is adjusted, reevaluate absolute sleep times based on the RTC 2017-03-14 19:06:44 +00:00
timeb.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
timeet.h Constify the pointers to eventtimer and timecounter name strings. 2015-08-13 14:43:25 +00:00
timeffc.h
timepps.h Implement a mechanism for making changes in the kernel<->driver PPS 2015-05-04 17:59:39 +00:00
timers.h
times.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
timespec.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
timetc.h Implement userspace gettimeofday(2) with HPET timecounter. 2016-08-17 09:52:09 +00:00
timex.h sys/sys: minor spelling fixes. 2016-05-03 15:14:17 +00:00
tree.h Provide individual prototype and generate macros for the red-black tree. 2015-01-24 12:43:36 +00:00
tty.h Commit the 64-bit inode project. 2017-05-23 09:29:05 +00:00
ttycom.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ttydefaults.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ttydevsw.h - Make the code consistent with itself style-wise and bring it closer 2016-01-25 22:58:06 +00:00
ttydisc.h
ttyhook.h
ttyqueue.h Check tty_gone() after allocating IO buffers. The tty lock has to be 2017-01-13 16:37:38 +00:00
turnstile.h Typo in comment. 2016-05-12 06:20:26 +00:00
types.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
ucontext.h POSIX states that #include <signal.h> shall make both mcontext_t and 2016-02-12 07:38:19 +00:00
ucred.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
uio.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
umtx.h Add implementation of robust mutexes, hopefully close enough to the 2016-05-17 09:56:22 +00:00
un.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
unistd.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
unpcb.h Remove write only flag UNP_HAVEPCCACHED. 2017-06-02 17:39:05 +00:00
user.h procstat(1): Add TCP socket send/recv buffer size 2017-05-26 22:17:44 +00:00
utsname.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
uuid.h
vdso.h hyperv: Implement userspace gettimeofday(2) with Hyper-V reference TSC 2016-12-19 07:40:45 +00:00
vmem.h Make ZFS ARC track both KVA usage and fragmentation. 2015-04-03 14:45:48 +00:00
vmmeter.h - Remove 'struct vmmeter' from 'struct pcpu', leaving only global vmmeter 2017-04-17 17:34:47 +00:00
vnode.h Add sysctl vfs.ino64_trunc_error controlling action on truncating 2017-06-05 11:40:30 +00:00
vtoc.h Re-apply change 306811 or alternatively, revert change 307385. 2016-10-16 02:43:51 +00:00
wait.h Renumber copyright clause 4 2017-02-28 23:42:47 +00:00
watchdog.h
zlib.h Move zlib.c from net to libkern. 2015-04-22 14:38:58 +00:00
zutil.h Move zlib.c from net to libkern. 2015-04-22 14:38:58 +00:00