CVS commit: src/lib/libc/time
Module Name:src Committed By: christos Date: Mon Sep 19 18:43:23 UTC 2016 Modified Files: src/lib/libc/time: zic.c Log Message: PR/51484: gson@: Fix off by one (wrong merge) To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/lib/libc/time/zic.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/intrctl
Module Name:src Committed By: ryo Date: Mon Sep 19 18:46:39 UTC 2016 Modified Files: src/usr.sbin/intrctl: intrctl.c Log Message: "intrctl list" auto fit to minimum columns Reviewed by nonaka@ and knakahara@ To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/intrctl/intrctl.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/ic
Module Name:src Committed By: jdolecek Date: Mon Sep 19 19:06:58 UTC 2016 Modified Files: src/sys/dev/ic: nvme.c Log Message: comment tyop and KNF; pointed out by Nick To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/ic/nvme.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/ic
Module Name:src Committed By: jakllsch Date: Mon Sep 19 19:07:53 UTC 2016 Modified Files: src/sys/dev/ic: siisata.c Log Message: Don't permanantly disable port if drive probe times out, reinitialize port instead. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/dev/ic/siisata.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/ndp
Module Name:src Committed By: christos Date: Mon Sep 19 19:13:14 UTC 2016 Modified Files: src/usr.sbin/ndp: ndp.c Log Message: remove unused ancient code and widen v6 address so that columns are aligned. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/usr.sbin/ndp/ndp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/mit/xorg/server/drivers/xf86-video-intel
Module Name:src Committed By: christos Date: Mon Sep 19 19:15:04 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers/xf86-video-intel: Makefile Log Message: XXX: This driver still needs XFree86LOADER defined to expose intelModuleData. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 \ src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jdolecek Date: Mon Sep 19 20:33:51 UTC 2016 Modified Files: src/sys/dev/ic: ld_nvme.c nvme.c nvmevar.h Log Message: on further thought, just remove the separately allocated nvme_ns_context altogether and fold into nvme_ccb; allocating this separately just isn't useful To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/dev/ic/ld_nvme.c cvs rdiff -u -r1.10 -r1.11 src/sys/dev/ic/nvme.c cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/nvmevar.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
Module Name:src Committed By: maya Date: Mon Sep 19 20:46:55 UTC 2016 Modified Files: src/sys/arch/i386/include: pmap.h src/sys/arch/x86/include: pmap.h Log Message: move function prototype to x86, so it is available to amd64 too To generate a diff of this commit: cvs rdiff -u -r1.117 -r1.118 src/sys/arch/i386/include/pmap.h cvs rdiff -u -r1.59 -r1.60 src/sys/arch/x86/include/pmap.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libm
Module Name:src Committed By: christos Date: Mon Sep 19 22:05:05 UTC 2016 Modified Files: src/lib/libm/complex: Makefile.inc src/lib/libm/src: math_private.h Added Files: src/lib/libm/complex: catrig.c catrigf.c catrigl.c Log Message: Add the complex trig functions from FreeBSD To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libm/complex/Makefile.inc cvs rdiff -u -r0 -r1.1 src/lib/libm/complex/catrig.c \ src/lib/libm/complex/catrigf.c src/lib/libm/complex/catrigl.c cvs rdiff -u -r1.22 -r1.23 src/lib/libm/src/math_private.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: jdolecek Date: Mon Sep 19 22:11:41 UTC 2016 Modified Files: src/sys/dev/ic: nvme.c nvmevar.h Log Message: slightly optimize memory access - change struct nvme_queue so that the struct dmamem members are allocated as part of it, instead of separate kmem_alloc()s To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/dev/ic/nvme.c cvs rdiff -u -r1.4 -r1.5 src/sys/dev/ic/nvmevar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev
Module Name:src Committed By: jdolecek Date: Mon Sep 19 23:32:30 UTC 2016 Modified Files: src/sys/dev: ld.c src/sys/dev/raidframe: rf_netbsdkintf.c Log Message: fix DIOCCACHESYNC ioctl on ld(4) and raid(4) to work again; it got broken when the code was switched over to dk_ioctl() - countrary to disk_ioctl(), dk_ioctl() returns ENOTTY for ioctls it doesn't support, so must be called as last resort, not first bug was introduced in rev 1.83 (2015-05-02) for ld(4), and 1.335 (2016-01-03) for raid(4) To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/sys/dev/ld.c cvs rdiff -u -r1.345 -r1.346 src/sys/dev/raidframe/rf_netbsdkintf.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/raidframe
Module Name:src Committed By: jdolecek Date: Mon Sep 19 23:37:10 UTC 2016 Modified Files: src/sys/dev/raidframe: rf_netbsdkintf.c Log Message: fix mistake fallthrough in the ioctl switch introduced in previous commit To generate a diff of this commit: cvs rdiff -u -r1.346 -r1.347 src/sys/dev/raidframe/rf_netbsdkintf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.