ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk/sys
r7911
File Last Change
 ../
amd64/ 7910 (7 years ago) by laffer1: part one of OFED
boot/ 7859 (7 years ago) by laffer1: work around file modifications causing rebuilds in some cases
bsm/ 7247 (8 years ago) by laffer1: add the kernel piece of wait6 system call
cam/ 7811 (7 years ago) by laffer1: work around issues with Samsung 840 pro drives. It reports SATA async notification but returns errors on attemps to use it. Now this error is reported but not fatal.
cddl/ 7885 (7 years ago) by laffer1: Bump dtrace_helper_actions_max from 32 to 128 Dave Pacheco from Joyent (and Dtrace.org) bumped the cap to 1024 but, according to his blog, 128 is the recommended minimum. For now bump it safely to 128 although we may have to bump it further if there is demand in the future.
compat/ 7898 (7 years ago) by laffer1: regen
conf/ 7910 (7 years ago) by laffer1: part one of OFED
contrib/ 7844 (7 years ago) by laffer1: revert to old behavior of allocating table/table entries using M_NOWAIT. Use M_NOWAIT while hoding the pf giant lock. Obtained from: FreeBSD SVN 238600
crypto/ 6425 (10 years ago) by laffer1: reset props for svn keywords
ddb/ 6425 (10 years ago) by laffer1: reset props for svn keywords
dev/ 7909 (7 years ago) by laffer1: Fix/add support for SCSI UNMAP to ATA DSM translation. This addresses kernel panic observed when sending SCSI UNMAP commands to SATA disks attached to isci(4). 1) Flesh out callback routines to allocate/free buffers needed for translating SCSI UNMAP data to ATA DSM data. 2) Add controller-level pool for storing buffers previously allocated for UNMAP translation, to lessen chance of no buffer available under memory pressure. 3) Ensure driver properly handles case where buffer pool is empty and contigmalloc returns NULL. 4) Clear freeze bit in isci_remote_device_release_lun_queue() before calling xpt_release_devq to ensure that any ccbs which immediately start during the call to xpt_release_devq() see an accurate picture of the frozen_lun_mask. This code path is extensively exercised when tagged read/write commands mix with non-tagged DSM commands. Obtained from: FreeBSD
fs/ 7907 (7 years ago) by laffer1: add htree related items
gdb/ 6425 (10 years ago) by laffer1: reset props for svn keywords
geom/ 7861 (7 years ago) by laffer1: Make the addition of the d_gone binary compatible. This allows storage drivers compiled for 9.0 to work on 9.1 and preserves the ABI for disks. Obtained from: FreeBSD
gnu/ 6425 (10 years ago) by laffer1: reset props for svn keywords
i386/ 7910 (7 years ago) by laffer1: part one of OFED
isa/ 6425 (10 years ago) by laffer1: reset props for svn keywords
kern/ 7899 (7 years ago) by laffer1: Add a sysctl kern.pid_max, which limits the maximum pid the system is allowed to allocate, and corresponding tunable with the same name. Note that existing processes with higher pids are left intact.
kgssapi/ 6425 (10 years ago) by laffer1: reset props for svn keywords
libkern/ 7790 (7 years ago) by laffer1: sync with userland version
modules/ 7910 (7 years ago) by laffer1: part one of OFED
net/ 7864 (7 years ago) by laffer1: Implement SIOCGIFMEDIA for if_tap(4) Appease certain if_tap(4) consumers by providing simulated Ethernet media status. DragonFly commit 70d9a675bf5441cc854a843ead702d08928c37f3 Obtained from: DragonFly
net80211/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netatalk/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netgraph/ 7867 (7 years ago) by laffer1: add a module version so others can depend on it
netinet/ 7868 (7 years ago) by laffer1: Add IPPROTO_MPLS (rfc4023) IP protocol definition There are currently no in-tree consumers; I'm adding it now for use by vendor code. This matches the change OpenBSD made while implementing MPLS in gif(4). Obtained from: FreeBSD/OpenBSD
netinet6/ 7524 (8 years ago) by laffer1: Check if an extracted zoneid is equal to the non-zero sin6_scope_id only when it is link-local or MC interface-local. Obtained from: FreeBSD, svn rev 243235
netipsec/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netipx/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netnatm/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netncp/ 6425 (10 years ago) by laffer1: reset props for svn keywords
netsmb/ 6425 (10 years ago) by laffer1: reset props for svn keywords
nfs/ 6425 (10 years ago) by laffer1: reset props for svn keywords
nfsclient/ 7886 (7 years ago) by laffer1: reduce code duplication.
nfsserver/ 6425 (10 years ago) by laffer1: reset props for svn keywords
nlm/ 7899 (7 years ago) by laffer1: Add a sysctl kern.pid_max, which limits the maximum pid the system is allowed to allocate, and corresponding tunable with the same name. Note that existing processes with higher pids are left intact.
ofed/ 7911 (7 years ago) by laffer1: sync with freebsd rev 244242
opencrypto/ 6425 (10 years ago) by laffer1: reset props for svn keywords
pci/ 7303 (8 years ago) by laffer1: add support for the Realtek 8168/8111 G and the 8106E
rpc/ 6425 (10 years ago) by laffer1: reset props for svn keywords
security/ 6425 (10 years ago) by laffer1: reset props for svn keywords
sys/ 7899 (7 years ago) by laffer1: Add a sysctl kern.pid_max, which limits the maximum pid the system is allowed to allocate, and corresponding tunable with the same name. Note that existing processes with higher pids are left intact.
teken/ 6425 (10 years ago) by laffer1: reset props for svn keywords
tools/ 5234 (11 years ago) by laffer1: sync with freebsd 9 stable.
ufs/ 6425 (10 years ago) by laffer1: reset props for svn keywords
vm/ 7902 (7 years ago) by laffer1: warn when too much swap is configured, and avoid flooding the console when running out of space for metadata.
x86/ 7857 (7 years ago) by laffer1: Add rmb() to tsc_read_##x to enforce serialization of rdtsc captures. Intel Architecture Manual specifies that rdtsc instruction is not serialized, so without this change, TSC synchronization test would periodically fail, resulting in use of HPET timecounter instead of TSC-low. This caused severe performance degradation (40-50%) when running high IO/s workloads due to HPET MMIO reads and GEOM stat collection. Tests on Xeon E5-2600 (Sandy Bridge) 8C systems were seeing TSC synchronization fail approximately 20% of the time. Obtained from: FreeBSD 9 stable svn rev 283910
xdr/ 6425 (10 years ago) by laffer1: reset props for svn keywords
xen/ 6425 (10 years ago) by laffer1: reset props for svn keywords
Makefile 6468 (10 years ago) by laffer1: Drop sparc64 arch
49 directories and 1 file shown