ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk/sys
r9343
File (rev) Last Change
 ../
xen/ 8270 (7 years ago) by laffer1: python 3 support
xdr/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
x86/ 9029 (7 years ago) by laffer1: record the correct error.
vm/ 9332 (7 years ago) by laffer1: Assert that the object type for the vnode' non-NULL v_object, passed to vnode_pager_setsize(), is either OBJT_VNODE, or, if vnode was already reclaimed, OBJT_DEAD. More, if the object is terminated, do not perform the resizing operation.
ufs/ 9287 (7 years ago) by laffer1: reduce runtime of fsck and tweak first indrect block placement. freebsd svn 249782
tools/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
teken/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
sys/ 9343 (7 years ago) by laffer1: Re-factor the code to provide kern_proc_filedesc_out(), kern_proc_out(), and kern_proc_vmmap_out() functions to output process kinfo structures to sbuf, to make the code reusable. The functions are going to be used in the coredump routine to store procstat info in the core program header notes. Obtained from: FreeBSD
security/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
rpc/ 9314 (7 years ago) by laffer1: Improve error handling when unwrapping received data.
pci/ 7303 (8 years ago) by laffer1: add support for the Realtek 8168/8111 G and the 8106E
opencrypto/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
ofed/ 7911 (7 years ago) by laffer1: sync with freebsd rev 244242
nlm/ 8932 (7 years ago) by laffer1: mark SYSCTL nodes static
nfsserver/ 8862 (7 years ago) by laffer1: timestap fixes for NFS.
nfsclient/ 9330 (7 years ago) by laffer1: When an NFS unmount occurs, once vflush() writes the last dirty buffer for the last vnode on the mount back to the server, it returns. At that point, the code continues with the unmount, including freeing up the nfs specific part of the mount structure. It is possible that an nfsiod thread will try to check for an empty I/O queue in the nfs specific part of the mount structure after it has been free'd by the unmount. This patch avoids this problem by setting the iodmount entries for the mount back to NULL while holding the mutex in the unmount and checking the appropriate entry is non-NULL after acquiring the mutex in the nfsiod thread. Obtained from: FreeBSD svn 250258
nfs/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
netsmb/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
netpfil/ 9023 (7 years ago) by laffer1: when removing a specific set, call ipfw_expire_dyn_rules once.
netncp/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
netnatm/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
netipx/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
netipsec/ 9308 (7 years ago) by laffer1: MFC r249294: Use IP6STAT_INC/IP6STAT_DEC macros to update ip6 stats. MFC r249528,249546: Add accounting to the source address selection algorithm for cases, when it fails to select an address, also add several another counters to the statistics. MFC r249543,249552: Replace hardcoded numbers. MFC r249544: Use IP6S_M2MMAX macro. MFC r249545: Replace hardcoded numbers. Also use interface-local scope name instead of node-local. Obtained from: FreeBSD
netinet6/ 9308 (7 years ago) by laffer1: MFC r249294: Use IP6STAT_INC/IP6STAT_DEC macros to update ip6 stats. MFC r249528,249546: Add accounting to the source address selection algorithm for cases, when it fails to select an address, also add several another counters to the statistics. MFC r249543,249552: Replace hardcoded numbers. MFC r249544: Use IP6S_M2MMAX macro. MFC r249545: Replace hardcoded numbers. Also use interface-local scope name instead of node-local. Obtained from: FreeBSD
netinet/ 9325 (7 years ago) by laffer1: Move IPPROTO_IPV6 from #ifdef __BSD_VISIBLE to #if __POSIX_VISIBLE >= 201112 since POSIX 2001 states that it shall be defined.
netgraph/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
netatalk/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
net80211/ 8932 (7 years ago) by laffer1: mark SYSCTL nodes static
net/ 9308 (7 years ago) by laffer1: MFC r249294: Use IP6STAT_INC/IP6STAT_DEC macros to update ip6 stats. MFC r249528,249546: Add accounting to the source address selection algorithm for cases, when it fails to select an address, also add several another counters to the statistics. MFC r249543,249552: Replace hardcoded numbers. MFC r249544: Use IP6S_M2MMAX macro. MFC r249545: Replace hardcoded numbers. Also use interface-local scope name instead of node-local. Obtained from: FreeBSD
modules/ 9327 (7 years ago) by laffer1: lindevfs shouldnt be here anymore.
libkern/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
kgssapi/ 8566 (7 years ago) by laffer1: invalid kgss_gssd_handle crash
kern/ 9343 (7 years ago) by laffer1: Re-factor the code to provide kern_proc_filedesc_out(), kern_proc_out(), and kern_proc_vmmap_out() functions to output process kinfo structures to sbuf, to make the code reusable. The functions are going to be used in the coredump routine to store procstat info in the core program header notes. Obtained from: FreeBSD
isa/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
i386/ 9256 (7 years ago) by laffer1: remove more lindev references.
gnu/ 9033 (7 years ago) by laffer1: mark malloc defines static that have no malloc declares.
geom/ 9334 (7 years ago) by laffer1: Support the FAT16 partition type in gpart(8)
gdb/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
fs/ 9330 (7 years ago) by laffer1: When an NFS unmount occurs, once vflush() writes the last dirty buffer for the last vnode on the mount back to the server, it returns. At that point, the code continues with the unmount, including freeing up the nfs specific part of the mount structure. It is possible that an nfsiod thread will try to check for an empty I/O queue in the nfs specific part of the mount structure after it has been free'd by the unmount. This patch avoids this problem by setting the iodmount entries for the mount back to NULL while holding the mutex in the unmount and checking the appropriate entry is non-NULL after acquiring the mutex in the nfsiod thread. Obtained from: FreeBSD svn 250258
dev/ 9342 (7 years ago) by laffer1: Return a lun count of 1 and a lun id of 0 when CAM attempts a REPORT_LUNS command on a disk device. This quieseces some noise on the console that recently appeared.
ddb/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
crypto/ 7912 (7 years ago) by laffer1: remove cvs2svn prop
contrib/ 8963 (7 years ago) by laffer1: merge in TOE update from FreeBSD 252555.
conf/ 9257 (7 years ago) by laffer1: bump after /dev/full add and lindev removal. clean up notes and file includes for kernel
compat/ 9247 (7 years ago) by laffer1: pretend we are linux 2.6.18 so we can use newer fedora packages
cddl/ 9157 (7 years ago) by laffer1: sync with freebsd 9.2
cam/ 9341 (7 years ago) by laffer1: Expose CAM_BOOT_DELAY as a kernel conf item now. This allows users who boot without loader to adjust their environments around slightly buggy or slow hardware.
bsm/ 8508 (7 years ago) by laffer1: merge in sys bsm changes.
boot/ 9319 (7 years ago) by laffer1: When rebooting (exiting) from the BTX loader, make sure to restore the GDT from the correct segment, otherwise a triple fault would be caused. In some virtual environments (VMware, VirtualBox, etc) this could lead to a unhandled error or hang in the guest emulation software. Thanks to avg and jhb for a few hints in the right direction.
amd64/ 9340 (7 years ago) by laffer1: Partially saved extended state must be handled always, i.e. for both fpu-owned context, and for pcb-saved one. More, the XSAVE could do partial save, same as XSAVEOPT, so qualifier for the handler should be use_xsave and not use_xsaveopt. Since xsave_area_desc is now needed regardless of the XSAVEOPT use, remove the write-only use_xsaveopt variable.
Makefile 6468 (10 years ago) by laffer1: Drop sparc64 arch
50 directories and 1 file shown