CVS commit: src/sys/dev/i2c
Module Name:src Committed By: rkujawa Date: Mon Oct 28 11:24:08 UTC 2013 Modified Files: src/sys/dev/i2c: mcp980x.c Log Message: Fix name of sysctl setup function. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/mcp980x.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: matt Date: Mon Oct 28 17:40:43 UTC 2013 Modified Files: src/sys/dev/usb: ehci.c ohci.c uhci.c Log Message: Add an explicit initialization of .new_device = NULL To generate a diff of this commit: cvs rdiff -u -r1.212 -r1.213 src/sys/dev/usb/ehci.c cvs rdiff -u -r1.243 -r1.244 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.261 -r1.262 src/sys/dev/usb/uhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: matt Date: Mon Oct 28 17:49:33 UTC 2013 Modified Files: src/sys/dev/usb: xhci.c xhcivar.h Log Message: Add support for scratchpad buffers (required for some XHCI devices). Fix an endian issue. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/usb/xhci.c cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/xhcivar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc
Module Name:src Committed By: mbalmer Date: Mon Oct 28 18:33:20 UTC 2013 Modified Files: src/etc: MAKEDEV.tmpl Log Message: create a lua device node for lua(4) and luactl(8) To generate a diff of this commit: cvs rdiff -u -r1.171 -r1.172 src/etc/MAKEDEV.tmpl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: mbalmer Date: Mon Oct 28 18:51:13 UTC 2013 Modified Files: src/distrib/sets/lists/modules: mi src/sys/modules: Makefile Log Message: link the lua(4) module to the build To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/distrib/sets/lists/modules/mi cvs rdiff -u -r1.120 -r1.121 src/sys/modules/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: mbalmer Date: Mon Oct 28 19:05:21 UTC 2013 Modified Files: src/distrib/sets/lists/base: mi src/distrib/sets/lists/man: mi src/sbin: Makefile Log Message: link luactl(8) to the build To generate a diff of this commit: cvs rdiff -u -r1.1045 -r1.1046 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.1445 -r1.1446 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.124 -r1.125 src/sbin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: mbalmer Date: Mon Oct 28 19:18:54 UTC 2013 Modified Files: src/distrib/sets/lists/modules: mi src/sys/modules: Makefile Log Message: link core(9l) (docs pending) to the build To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/distrib/sets/lists/modules/mi cvs rdiff -u -r1.121 -r1.122 src/sys/modules/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/modules/luapmf
Module Name:src Committed By: mbalmer Date: Mon Oct 28 20:06:05 UTC 2013 Added Files: src/sys/modules/luapmf: Makefile luapmf.c Log Message: Initial Lua binding for pmf(9) To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/sys/modules/luapmf/Makefile \ src/sys/modules/luapmf/luapmf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: mbalmer Date: Mon Oct 28 20:32:15 UTC 2013 Modified Files: src/distrib/sets/lists/modules: mi src/sys/modules: Makefile Log Message: linke pmf(9l) to the build To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56 src/distrib/sets/lists/modules/mi cvs rdiff -u -r1.122 -r1.123 src/sys/modules/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/ffs
Module Name:src Committed By: bad Date: Mon Oct 28 21:32:52 UTC 2013 Modified Files: src/sys/ufs/ffs: ffs_alloc.c Log Message: Pull in fix from FreeBSD ffs_alloc.c r121785: Consider only cylinder groups with at least 75% of the average free space per cylinder group and 75% of the average free inodes per cylinder group as candidates for the creation of a new directory. Avoids excessive I/O scanning for a suitable cylinder group on relatively full file systems. Tested by sborril and me. Pullup: netbsd-6, netbsd-5 Original commit message: Tweak the calculation of minbfree in ffs_dirpref() so that only those cylinder groups that have at least 75% of the average free space per cylinder group for that file system are considered as candidates for the creation of a new directory. The previous formula for minbfree would set it to zero if the file system was more than 75% full, which allowed cylinder groups with no free space at all to be chosen as candidates for directory creation, which resulted in an expensive search for free blocks for each file that was subsequently created in that directory. Modify the calculation of minifree in the same way. Decrease maxcontigdirs as the file system fills to decrease the likelyhood that a cluster of directories will overflow the available space in a cylinder group. Reviewed by:mckusick Tested by: km...@vicor.com MFC after: 2 weeks To generate a diff of this commit: cvs rdiff -u -r1.143 -r1.144 src/sys/ufs/ffs/ffs_alloc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/sys
Module Name:src Committed By: matt Date: Mon Oct 28 21:36:43 UTC 2013 Modified Files: src/sys/sys: exec_elf.h Log Message: Add DF_* values for DT_FLAGS To generate a diff of this commit: cvs rdiff -u -r1.129 -r1.130 src/sys/sys/exec_elf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net
Module Name:src Committed By: christos Date: Mon Oct 28 21:38:01 UTC 2013 Modified Files: src/sys/net: if.h Log Message: add an alias for the linux name for the interface index To generate a diff of this commit: cvs rdiff -u -r1.158 -r1.159 src/sys/net/if.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/debug
Module Name:src Committed By: htodd Date: Mon Oct 28 21:39:45 UTC 2013 Modified Files: src/distrib/sets/lists/debug: mi Log Message: Adding luactl.debug to lists to fix debug build. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/distrib/sets/lists/debug/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbarm
Module Name:src Committed By: matt Date: Mon Oct 28 22:35:07 UTC 2013 Modified Files: src/sys/arch/evbarm/bcm53xx: bcm53xx_start.S src/sys/arch/evbarm/conf: BCM5301X mk.bcm53xx std.bcm53xx Added Files: src/sys/arch/evbarm/conf: BCM56340 BCM56340_INSTALL Log Message: Support for the Broadcom BCM56340 iProc based switch. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/evbarm/bcm53xx/bcm53xx_start.S cvs rdiff -u -r1.15 -r1.16 src/sys/arch/evbarm/conf/BCM5301X cvs rdiff -u -r0 -r1.1 src/sys/arch/evbarm/conf/BCM56340 \ src/sys/arch/evbarm/conf/BCM56340_INSTALL cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbarm/conf/mk.bcm53xx cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbarm/conf/std.bcm53xx Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/arm
Module Name:src Committed By: matt Date: Mon Oct 28 22:50:25 UTC 2013 Modified Files: src/sys/arch/arm/arm: bus_space_a2x.S bus_space_a4x.S bus_space_asm_generic.S Log Message: Make these compatible with thumb/thumb2 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/arm/bus_space_a2x.S \ src/sys/arch/arm/arm/bus_space_a4x.S cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/arm/bus_space_asm_generic.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/broadcom
Module Name:src Committed By: matt Date: Mon Oct 28 22:51:16 UTC 2013 Modified Files: src/sys/arch/arm/broadcom: bcm53xx_board.c bcm53xx_ccb.c bcm53xx_eth.c bcm53xx_intr.h bcm53xx_reg.h bcm53xx_usb.c bcm53xx_var.h bcmgen_space.c files.bcm53xx Added Files: src/sys/arch/arm/broadcom: bcm53xx_nand.c Log Message: Add support for the BCM56340 iProc based switch To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/broadcom/bcm53xx_board.c cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/broadcom/bcm53xx_ccb.c \ src/sys/arch/arm/broadcom/bcm53xx_usb.c \ src/sys/arch/arm/broadcom/bcmgen_space.c \ src/sys/arch/arm/broadcom/files.bcm53xx cvs rdiff -u -r1.24 -r1.25 src/sys/arch/arm/broadcom/bcm53xx_eth.c cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/broadcom/bcm53xx_intr.h cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/broadcom/bcm53xx_nand.c cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/broadcom/bcm53xx_reg.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/broadcom/bcm53xx_var.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/conf
Module Name:src Committed By: matt Date: Mon Oct 28 22:52:04 UTC 2013 Modified Files: src/sys/arch/arm/conf: Makefile.arm Log Message: Make sure certain files are always assembled with -marm To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/arch/arm/conf/Makefile.arm Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/man
Module Name:src Committed By: christos Date: Mon Oct 28 23:46:17 UTC 2013 Modified Files: src/usr.bin/man: man.c Log Message: Instead of guessing the suffix in the code, use the suffix list previously loaded via man.conf(5). While there, zap unused iteration code. (Franco Fichtner) To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/usr.bin/man/man.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/modules
Module Name:src Committed By: riz Date: Tue Oct 29 00:14:52 UTC 2013 Modified Files: src/distrib/sets/lists/modules: md.evbppc Log Message: Add the if_axen kmod to md.evbppc to unbreak the evbppc build. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/distrib/sets/lists/modules/md.evbppc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/sys
Module Name:src Committed By: christos Date: Tue Oct 29 00:22:59 UTC 2013 Modified Files: src/sys/sys: exec_elf.h Log Message: Add EM_AARCH64 from Elliott Hughes To generate a diff of this commit: cvs rdiff -u -r1.130 -r1.131 src/sys/sys/exec_elf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/include
Module Name:src Committed By: matt Date: Tue Oct 29 00:45:00 UTC 2013 Modified Files: src/sys/arch/arm/include: elf_machdep.h Log Message: Add AARCH64 definitions To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/include/elf_machdep.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: xsrc/external/mit/xf86-video-ati/dist/src
Module Name:xsrc Committed By: macallan Date: Tue Oct 29 01:06:03 UTC 2013 Modified Files: xsrc/external/mit/xf86-video-ati/dist/src: radeon_exa_render.c Log Message: Don't endian-twiddle solid source colours in composite operations on R1xx Now gtk2-rendered text looks right again with EXA and xrender acceleration enabled. Probably needs similar fixes for R2xx, also needs testing on little-endian hardware. To generate a diff of this commit: cvs rdiff -u -r1.1.1.10 -r1.2 \ xsrc/external/mit/xf86-video-ati/dist/src/radeon_exa_render.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.