CVS commit: src/sys/dev/if_ndis
Module Name:src Committed By: maxv Date: Mon Aug 15 08:12:32 UTC 2016 Modified Files: src/sys/dev/if_ndis: if_ndis.c Log Message: Uninitialized var, found by brainy To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/if_ndis/if_ndis.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netsmb
Module Name:src Committed By: maxv Date: Mon Aug 15 08:17:35 UTC 2016 Modified Files: src/sys/netsmb: smb_rq.c Log Message: Uninitialized vars, found by brainy To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/netsmb/smb_rq.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/bluetooth
Module Name:src Committed By: maxv Date: Mon Aug 15 08:20:11 UTC 2016 Modified Files: src/sys/dev/bluetooth: bcsp.c Log Message: Curious typo, found by mootja To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/dev/bluetooth/bcsp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/ia64/stand/common
Module Name:src Committed By: maxv Date: Mon Aug 15 08:24:05 UTC 2016 Modified Files: src/sys/arch/ia64/stand/common: load_elf64.c Log Message: Uninitialized var, found by brainy; not tested, but obvious enough To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/ia64/stand/common/load_elf64.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/sparc/stand/ofwboot
Module Name:src Committed By: maxv Date: Mon Aug 15 08:29:34 UTC 2016 Modified Files: src/sys/arch/sparc/stand/ofwboot: loadfile_machdep.c Log Message: Uninitialized var, found by brainy; not tested, but obvious enough To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 \ src/sys/arch/sparc/stand/ofwboot/loadfile_machdep.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbsh3/stand/mesboot/src
Module Name:src Committed By: maxv Date: Mon Aug 15 08:32:46 UTC 2016 Modified Files: src/sys/arch/evbsh3/stand/mesboot/src: mesboot.c Log Message: Uninitialized var, found by brainy; not tested, but obvious enough To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbsh3/stand/mesboot/src/mesboot.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/if_ndis
Module Name:src Committed By: maxv Date: Mon Aug 15 08:40:23 UTC 2016 Modified Files: src/sys/dev/if_ndis: if_ndis_pccard.c Log Message: Uninitialized var, found by brainy. FreeBSD fixed it this way four years ago. I haven't tested this change, but it is rather obvious, as the FreeBSD commit indicates, that sc->ndis_io_rid should be used instead. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/if_ndis/if_ndis_pccard.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/sparc/sparc
Module Name:src Committed By: maxv Date: Mon Aug 15 08:43:19 UTC 2016 Modified Files: src/sys/arch/sparc/sparc: emul.c Log Message: Return zero instead of error, otherwise it looks like it is supposed to return an error; found by brainy. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/arch/sparc/sparc/emul.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/microcode/aic7xxx
Module Name:src Committed By: maxv Date: Mon Aug 15 08:52:33 UTC 2016 Modified Files: src/sys/dev/microcode/aic7xxx: aicasm.c Log Message: This thing is completely buggy. There is a use-after-free and NULL pointer dereference. Just fix the uaf, and add a comment. Not tested, but obvious enough; found by brainy. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/dev/microcode/aic7xxx/aicasm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/ia64/stand/efi/libefi
Module Name:src Committed By: maxv Date: Mon Aug 15 09:00:52 UTC 2016 Modified Files: src/sys/arch/ia64/stand/efi/libefi: devicename.c Log Message: Uninitialized var, found by brainy. I haven't tested this change, and it may not be the perfect way to fix it. But it seems correct enough. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/ia64/stand/efi/libefi/devicename.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/ia64/stand/ia64/ski
Module Name:src Committed By: maxv Date: Mon Aug 15 09:06:40 UTC 2016 Modified Files: src/sys/arch/ia64/stand/ia64/ski: devicename.c Log Message: Two uninitialized vars, found by brainy. The former is similar to the one I fixed in ia64/stand/efi/libefi/devicename.c. I don't know how to fix the latter, so just add a comment. I will probably file a PR for this one. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/ia64/stand/ia64/ski/devicename.c 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: maxv Date: Mon Aug 15 09:14:12 UTC 2016 Modified Files: src/sys/net: if_ieee1394subr.c Log Message: Memory leak, found by brainy; not tested, but obvious enough To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/net/if_ieee1394subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat/linux/common
Module Name:src Committed By: maxv Date: Mon Aug 15 09:20:11 UTC 2016 Modified Files: src/sys/compat/linux/common: linux_futex.c Log Message: Uninitialized var, found by brainy; not tested, but obvious enough To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/compat/linux/common/linux_futex.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/pci
Module Name:src Committed By: maxv Date: Mon Aug 15 09:30:22 UTC 2016 Modified Files: src/sys/dev/pci: cmpci.c Log Message: Use the exact same argument for kmem_alloc and kmem_free; from brainy To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/dev/pci/cmpci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/external/bsd/dhcpcd/dist
Module Name:src Committed By: roy Date: Mon Aug 15 11:01:16 UTC 2016 Update of /cvsroot/src/external/bsd/dhcpcd/dist In directory ivanova.netbsd.org:/tmp/cvs-serv18368 Log Message: Import dhcpcd-6.11.3 with the following changes: * Workaround a 14 year old BSD issue where initial address lifetimes are transfered to the prefix route and are not updated again, causing the kernel to remove the route. The fix is to initially add the address with infinite lifetimes and then change the lifetimes to the correct ones. * IPv6 RA routes are now expired by dhcpcd. * Fix gateway interface assignment on BSD. * Only mask off signals we do something with (allows coredumps on some platforms) * Fix a memory issue where an old lease could be read and discarded but the buffer length not reset. * Bind DHCPv6 to the link-local address when not running in master mode so that many dhcpcd instances can run per interface. Status: Vendor Tag: roy Release Tags: dhcpcd-6-11-3 U src/external/bsd/dhcpcd/dist/common.c U src/external/bsd/dhcpcd/dist/control.c U src/external/bsd/dhcpcd/dist/dhcpcd.c U src/external/bsd/dhcpcd/dist/duid.c C src/external/bsd/dhcpcd/dist/eloop.c U src/external/bsd/dhcpcd/dist/if.c U src/external/bsd/dhcpcd/dist/if-options.c U src/external/bsd/dhcpcd/dist/script.c U src/external/bsd/dhcpcd/dist/dhcp-common.c C src/external/bsd/dhcpcd/dist/if-bsd.c U src/external/bsd/dhcpcd/dist/arp.c C src/external/bsd/dhcpcd/dist/dhcp.c C src/external/bsd/dhcpcd/dist/ipv4.c U src/external/bsd/dhcpcd/dist/ipv4ll.c C src/external/bsd/dhcpcd/dist/ipv6.c C src/external/bsd/dhcpcd/dist/ipv6nd.c C src/external/bsd/dhcpcd/dist/dhcp6.c U src/external/bsd/dhcpcd/dist/dhcpcd-embedded.c U src/external/bsd/dhcpcd/dist/auth.c U src/external/bsd/dhcpcd/dist/dhcpcd.conf U src/external/bsd/dhcpcd/dist/dhcpcd-definitions.conf U src/external/bsd/dhcpcd/dist/dhcpcd-embedded.c.in U src/external/bsd/dhcpcd/dist/dhcpcd-embedded.h.in U src/external/bsd/dhcpcd/dist/dhcpcd-run-hooks.8.in U src/external/bsd/dhcpcd/dist/dhcpcd-run-hooks.in C src/external/bsd/dhcpcd/dist/dhcpcd.8.in U src/external/bsd/dhcpcd/dist/dhcpcd.conf.5.in U src/external/bsd/dhcpcd/dist/arp.h U src/external/bsd/dhcpcd/dist/auth.h U src/external/bsd/dhcpcd/dist/bpf-filter.h U src/external/bsd/dhcpcd/dist/common.h U src/external/bsd/dhcpcd/dist/config.h U src/external/bsd/dhcpcd/dist/control.h C src/external/bsd/dhcpcd/dist/defs.h U src/external/bsd/dhcpcd/dist/dev.h U src/external/bsd/dhcpcd/dist/dhcp-common.h U src/external/bsd/dhcpcd/dist/dhcp.h U src/external/bsd/dhcpcd/dist/dhcp6.h U src/external/bsd/dhcpcd/dist/dhcpcd-embedded.h U src/external/bsd/dhcpcd/dist/dhcpcd.h U src/external/bsd/dhcpcd/dist/duid.h U src/external/bsd/dhcpcd/dist/eloop.h U src/external/bsd/dhcpcd/dist/if-options.h U src/external/bsd/dhcpcd/dist/if.h U src/external/bsd/dhcpcd/dist/ipv4.h U src/external/bsd/dhcpcd/dist/ipv4ll.h U src/external/bsd/dhcpcd/dist/ipv6.h U src/external/bsd/dhcpcd/dist/ipv6nd.h U src/external/bsd/dhcpcd/dist/script.h U src/external/bsd/dhcpcd/dist/crypt/hmac_md5.c U src/external/bsd/dhcpcd/dist/crypt/crypt.h U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/01-test U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/02-dump U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/20-resolv.conf U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/30-hostname U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/50-ntp.conf U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/10-wpa_supplicant U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/15-timezone U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/29-lookup-hostname U src/external/bsd/dhcpcd/dist/dhcpcd-hooks/50-ypbind 9 conflicts created by this import. Use the following command to help the merge: cvs checkout -jroy:yesterday -jroy src/external/bsd/dhcpcd/dist
CVS commit: src/external/bsd/dhcpcd/dist
Module Name:src Committed By: roy Date: Mon Aug 15 11:04:53 UTC 2016 Modified Files: src/external/bsd/dhcpcd/dist: defs.h dhcp.c dhcp6.c dhcpcd.8.in eloop.c if-bsd.c ipv4.c ipv6.c ipv6nd.c Log Message: Sync To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/external/bsd/dhcpcd/dist/defs.h cvs rdiff -u -r1.44 -r1.45 src/external/bsd/dhcpcd/dist/dhcp.c cvs rdiff -u -r1.23 -r1.24 src/external/bsd/dhcpcd/dist/dhcp6.c cvs rdiff -u -r1.49 -r1.50 src/external/bsd/dhcpcd/dist/dhcpcd.8.in cvs rdiff -u -r1.14 -r1.15 src/external/bsd/dhcpcd/dist/eloop.c cvs rdiff -u -r1.32 -r1.33 src/external/bsd/dhcpcd/dist/if-bsd.c cvs rdiff -u -r1.24 -r1.25 src/external/bsd/dhcpcd/dist/ipv4.c cvs rdiff -u -r1.20 -r1.21 src/external/bsd/dhcpcd/dist/ipv6.c cvs rdiff -u -r1.31 -r1.32 src/external/bsd/dhcpcd/dist/ipv6nd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: roy Date: Mon Aug 15 11:06:46 UTC 2016 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: Note import of dhcpcd-6.11.3 To generate a diff of this commit: cvs rdiff -u -r1.1350 -r1.1351 src/doc/3RDPARTY cvs rdiff -u -r1.2179 -r1.2180 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/devpubd/hooks
Module Name:src Committed By: mlelstv Date: Mon Aug 15 12:54:40 UTC 2016 Modified Files: src/sbin/devpubd/hooks: 02-wedgenames Log Message: Avoid error message when /dev/wedges doesn't exist yet. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sbin/devpubd/hooks/02-wedgenames 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/omap
Module Name:src Committed By: mlelstv Date: Mon Aug 15 13:02:07 UTC 2016 Modified Files: src/sys/arch/arm/omap: omap3_sdhc.c Log Message: use symbolic interrupt level for sdmmc, no functional change. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/arch/arm/omap/omap3_sdhc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/mips/mips
Module Name:src Committed By: skrll Date: Mon Aug 15 14:26:48 UTC 2016 Modified Files: src/sys/arch/mips/mips: mipsX_subr.S Log Message: Fix an instruction number in a comment To generate a diff of this commit: cvs rdiff -u -r1.87 -r1.88 src/sys/arch/mips/mips/mipsX_subr.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/mips/mips
Module Name:src Committed By: skrll Date: Mon Aug 15 14:44:44 UTC 2016 Modified Files: src/sys/arch/mips/mips: mipsX_subr.S Log Message: Typo in comment To generate a diff of this commit: cvs rdiff -u -r1.88 -r1.89 src/sys/arch/mips/mips/mipsX_subr.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/mips/mips
Module Name:src Committed By: skrll Date: Mon Aug 15 14:45:31 UTC 2016 Modified Files: src/sys/arch/mips/mips: mipsX_subr.S Log Message: Fix copy&pasto shift value - hopefully this will fix LOONGSON/GDIUM To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.90 src/sys/arch/mips/mips/mipsX_subr.S 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: jakllsch Date: Mon Aug 15 15:51:39 UTC 2016 Modified Files: src/sys/dev: clock_subr.c Log Message: Fix leap year handling for years 2100 and greater. I can not explain why this works and the existing code doesn't. Maybe it has something to do with leap years happening at the end of a four year period and not at the beggining, and there being no year 0? To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/clock_subr.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-nouveau
Module Name:src Committed By: mrg Date: Mon Aug 15 17:01:25 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers/xf86-video-nouveau: Makefile Log Message: updates for xf86-video-nouveau 1.0.12. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 \ src/external/mit/xorg/server/drivers/xf86-video-nouveau/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: xsrc/external/mit/xf86-video-sis/dist
Module Name:xsrc Committed By: mrg Date: Mon Aug 15 17:40:26 UTC 2016 Update of /cvsroot/xsrc/external/mit/xf86-video-sis/dist In directory ivanova.netbsd.org:/tmp/cvs-serv25791 Log Message: initial import of xf86-video-sis-0.10.8 Status: Vendor Tag: xorg Release Tags: xf86-video-sis-0-10-8 U xsrc/external/mit/xf86-video-sis/dist/config.h.in U xsrc/external/mit/xf86-video-sis/dist/COPYING U xsrc/external/mit/xf86-video-sis/dist/missing U xsrc/external/mit/xf86-video-sis/dist/Makefile.am U xsrc/external/mit/xf86-video-sis/dist/configure U xsrc/external/mit/xf86-video-sis/dist/config.sub U xsrc/external/mit/xf86-video-sis/dist/INSTALL U xsrc/external/mit/xf86-video-sis/dist/install-sh U xsrc/external/mit/xf86-video-sis/dist/configure.ac U xsrc/external/mit/xf86-video-sis/dist/aclocal.m4 U xsrc/external/mit/xf86-video-sis/dist/depcomp U xsrc/external/mit/xf86-video-sis/dist/README U xsrc/external/mit/xf86-video-sis/dist/ltmain.sh U xsrc/external/mit/xf86-video-sis/dist/config.guess U xsrc/external/mit/xf86-video-sis/dist/ChangeLog U xsrc/external/mit/xf86-video-sis/dist/Makefile.in U xsrc/external/mit/xf86-video-sis/dist/man/Makefile.am U xsrc/external/mit/xf86-video-sis/dist/man/sis.man U xsrc/external/mit/xf86-video-sis/dist/man/Makefile.in U xsrc/external/mit/xf86-video-sis/dist/src/sispcirename.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_dac.h U xsrc/external/mit/xf86-video-sis/dist/src/initextx.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_opt.c U xsrc/external/mit/xf86-video-sis/dist/src/init.h U xsrc/external/mit/xf86-video-sis/dist/src/sis300_accel.c U xsrc/external/mit/xf86-video-sis/dist/src/osdef.h U xsrc/external/mit/xf86-video-sis/dist/src/sis310_accel.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_memcpy.c U xsrc/external/mit/xf86-video-sis/dist/src/initextx.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_vb.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_cursor.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_dga.c U xsrc/external/mit/xf86-video-sis/dist/src/init.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_video.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_shadow.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_driver.h U xsrc/external/mit/xf86-video-sis/dist/src/sis6326_video.c U xsrc/external/mit/xf86-video-sis/dist/src/compat-api.h U xsrc/external/mit/xf86-video-sis/dist/src/310vtbl.h U xsrc/external/mit/xf86-video-sis/dist/src/Makefile.am C xsrc/external/mit/xf86-video-sis/dist/src/sis_driver.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_regs.h U xsrc/external/mit/xf86-video-sis/dist/src/300vtbl.h U xsrc/external/mit/xf86-video-sis/dist/src/oem300.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_utility.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_dac.c U xsrc/external/mit/xf86-video-sis/dist/src/initdef.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_dri.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_common.h U xsrc/external/mit/xf86-video-sis/dist/src/oem310.h U xsrc/external/mit/xf86-video-sis/dist/src/init301.c U xsrc/external/mit/xf86-video-sis/dist/src/init301.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_accel.c U xsrc/external/mit/xf86-video-sis/dist/src/sis310_accel.h U xsrc/external/mit/xf86-video-sis/dist/src/sis.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_videostr.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_video.c U xsrc/external/mit/xf86-video-sis/dist/src/vgatypes.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_cursor.c U xsrc/external/mit/xf86-video-sis/dist/src/vstruct.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_dri.c U xsrc/external/mit/xf86-video-sis/dist/src/sis_vga.c U xsrc/external/mit/xf86-video-sis/dist/src/Makefile.in U xsrc/external/mit/xf86-video-sis/dist/src/sis_accel.h U xsrc/external/mit/xf86-video-sis/dist/src/sis300_accel.h U xsrc/external/mit/xf86-video-sis/dist/src/sis_setup.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xf86-video-sis/dist
CVS commit: xsrc/external/mit/xf86-video-sis/dist/src
Module Name:xsrc Committed By: mrg Date: Mon Aug 15 17:42:06 UTC 2016 Modified Files: xsrc/external/mit/xf86-video-sis/dist/src: sis_driver.c Log Message: merge xf86-video-sis 0.10.8 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 \ xsrc/external/mit/xf86-video-sis/dist/src/sis_driver.c 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-sis/include
Module Name:xsrc Committed By: mrg Date: Mon Aug 15 17:44:03 UTC 2016 Modified Files: xsrc/external/mit/xf86-video-sis/include: config.h Log Message: update for xf86-video-sis 0.10.8 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 xsrc/external/mit/xf86-video-sis/include/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 18:29:34 UTC 2016 Modified Files: src/sys/ufs/ext2fs: ext2fs_bswap.c ext2fs_extern.h ext2fs_vnops.c Log Message: adjust ext2fs_makeinode() so that the direnter is optional, use the function (with the direnter off) in ext2fs_mkdir() instead of the code copy; adjust ext2fs_makeinode() to initialize extra_isize and set creation time, if supported by the filesystem To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/ufs/ext2fs/ext2fs_bswap.c cvs rdiff -u -r1.52 -r1.53 src/sys/ufs/ext2fs/ext2fs_extern.h cvs rdiff -u -r1.123 -r1.124 src/sys/ufs/ext2fs/ext2fs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 18:38:10 UTC 2016 Modified Files: src/sys/ufs/ext2fs: ext2fs.h ext2fs_rename.c ext2fs_vnops.c Log Message: bump link limit to 65000 for files, and add support for EXT2F_ROCOMPAT_DIR_NLINK to make link count unlimited for directories To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/sys/ufs/ext2fs/ext2fs.h cvs rdiff -u -r1.10 -r1.11 src/sys/ufs/ext2fs/ext2fs_rename.c cvs rdiff -u -r1.124 -r1.125 src/sys/ufs/ext2fs/ext2fs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/fsck_ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 18:42:15 UTC 2016 Modified Files: src/sbin/fsck_ext2fs: fsck.h setup.c Log Message: divorce list of features supported by fsck_ext2fs from the kernel; while kernel might support e.g. extents, extra_isize or dir_nlink, fsck could actually have no idea about the features To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sbin/fsck_ext2fs/fsck.h cvs rdiff -u -r1.32 -r1.33 src/sbin/fsck_ext2fs/setup.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 18:46:11 UTC 2016 Modified Files: src/sys/ufs/ext2fs: ext2fs.h Log Message: EXT2F_INCOMPAT_FLEX_BG feature actually doesn't require any explicit code changes, all magic is done by setting the block offsets appropriately in group descriptors by newfs; add it to the list of supported INCOMPAT flags To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/sys/ufs/ext2fs/ext2fs.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/fsck_ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 18:57:07 UTC 2016 Modified Files: src/sbin/fsck_ext2fs: setup.c Log Message: adjust inode size check to compare against EXT2_REV0_DINODE_SIZE, rather then sizeof(struct ext2fs_dinode), as the structure definition was expanded with the optional fields To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sbin/fsck_ext2fs/setup.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/fsck_ext2fs
Module Name:src Committed By: jdolecek Date: Mon Aug 15 19:13:24 UTC 2016 Modified Files: src/sbin/fsck_ext2fs: setup.c Log Message: more informative debug output for unsupported features To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sbin/fsck_ext2fs/setup.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/make
Module Name:src Committed By: sjg Date: Mon Aug 15 19:20:17 UTC 2016 Modified Files: src/usr.bin/make: make.1 meta.c Log Message: Add .MAKE.META.IGNORE_FILTER to allow more complicated filtering of filemon data. The filter is applied to paths Read or Excuted, and if it expands to nothing, the entry is skipped. For example; dirdeps.mk can set this to: .MAKE.META.IGNORE_FILTER = M*/${.MAKE.DEPENDFILE_PREFIX}* when checking if DIRDEPS_CACHE is up to date, where only Makefile.depend* are of interest. To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/usr.bin/make/make.1 cvs rdiff -u -r1.65 -r1.66 src/usr.bin/make/meta.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: maya Date: Mon Aug 15 21:42:05 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: We don't use mfs for /tmp by default, so the man page shouldn't suggest this is the typical case. Because there's so little content in this entry, eliminate the parentheses around the explanation that /tmp is usually not preserved across reboots. To generate a diff of this commit: cvs rdiff -u -r1.111 -r1.112 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: mrg Date: Mon Aug 15 21:52:46 UTC 2016 Modified Files: src/share/mk: bsd.own.mk Log Message: add libxshmfence. To generate a diff of this commit: cvs rdiff -u -r1.939 -r1.940 src/share/mk/bsd.own.mk 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/xorg-server
Module Name:src Committed By: mrg Date: Mon Aug 15 21:58:40 UTC 2016 Modified Files: src/external/mit/xorg/server/xorg-server: Makefile.serverlib Log Message: don't define HAVE_XORG_CONFIG_H or _HAVE_DIX_CONFIG_H here. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 \ src/external/mit/xorg/server/xorg-server/Makefile.serverlib 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/xorg-server
Module Name:src Committed By: mrg Date: Mon Aug 15 22:01:16 UTC 2016 Modified Files: src/external/mit/xorg/server/xorg-server/Xi: Makefile src/external/mit/xorg/server/xorg-server/randr: Makefile Log Message: add missing include paths. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/mit/xorg/server/xorg-server/Xi/Makefile cvs rdiff -u -r1.7 -r1.8 \ src/external/mit/xorg/server/xorg-server/randr/Makefile 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/xorg-server/include
Module Name:src Committed By: mrg Date: Mon Aug 15 22:01:44 UTC 2016 Modified Files: src/external/mit/xorg/server/xorg-server/include: Makefile Log Message: add new mi headers in xorg-server 1.18. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 \ src/external/mit/xorg/server/xorg-server/include/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 00:08:17 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: Harmfully sentence fragments. Use sentences instead. I've also made some additional minor edits, and added missing /usr/src/sys/ufs/{chfs,ext2fs}. To generate a diff of this commit: cvs rdiff -u -r1.112 -r1.113 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 00:12:34 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: typo in previous. To generate a diff of this commit: cvs rdiff -u -r1.113 -r1.114 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 00:40:09 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: another typo; spotted by jnemeth To generate a diff of this commit: cvs rdiff -u -r1.114 -r1.115 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 00:47:19 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: Another typo. To generate a diff of this commit: cvs rdiff -u -r1.115 -r1.116 src/share/man/man7/hier.7 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: mrg Date: Tue Aug 16 00:55:09 UTC 2016 Modified Files: src/distrib/sets/lists/xbase: shl.mi src/distrib/sets/lists/xcomp: mi shl.mi src/distrib/sets/lists/xdebug: mi shl.mi src/external/mit/xorg/lib: Makefile Log Message: build libxshmfence. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/distrib/sets/lists/xbase/shl.mi cvs rdiff -u -r1.177 -r1.178 src/distrib/sets/lists/xcomp/mi cvs rdiff -u -r1.43 -r1.44 src/distrib/sets/lists/xcomp/shl.mi cvs rdiff -u -r1.21 -r1.22 src/distrib/sets/lists/xdebug/mi cvs rdiff -u -r1.32 -r1.33 src/distrib/sets/lists/xdebug/shl.mi cvs rdiff -u -r1.37 -r1.38 src/external/mit/xorg/lib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: mrg Date: Tue Aug 16 01:03:07 UTC 2016 Modified Files: src/share/mk: bsd.own.mk bsd.x11.mk Log Message: add a HAVE_XORG_SERVER_VER for use in sets. clean up the x11 defines a little for modern xorg, particularly the version. To generate a diff of this commit: cvs rdiff -u -r1.940 -r1.941 src/share/mk/bsd.own.mk cvs rdiff -u -r1.119 -r1.120 src/share/mk/bsd.x11.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets
Module Name:src Committed By: mrg Date: Tue Aug 16 01:05:19 UTC 2016 Modified Files: src/distrib/sets: Makefile mkvars.mk sets.subr Log Message: support xorg_server_ver define, currently settable to 110 (1.10.x) or 118 (1.18.x). To generate a diff of this commit: cvs rdiff -u -r1.102 -r1.103 src/distrib/sets/Makefile cvs rdiff -u -r1.28 -r1.29 src/distrib/sets/mkvars.mk cvs rdiff -u -r1.176 -r1.177 src/distrib/sets/sets.subr 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
Module Name:src Committed By: mrg Date: Tue Aug 16 01:10:19 UTC 2016 Modified Files: src/distrib/sets/lists/xcomp: mi src/distrib/sets/lists/xserver: md.amd64 md.i386 Log Message: sets lists updates for xorg-server 1.18. mark the obsolete files with xorg_server_ver=110 and the new-only files with 118. To generate a diff of this commit: cvs rdiff -u -r1.178 -r1.179 src/distrib/sets/lists/xcomp/mi cvs rdiff -u -r1.88 -r1.89 src/distrib/sets/lists/xserver/md.amd64 cvs rdiff -u -r1.106 -r1.107 src/distrib/sets/lists/xserver/md.i386 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: xsrc/external/mit
Module Name:xsrc Committed By: mrg Date: Tue Aug 16 01:27:48 UTC 2016 Modified Files: xsrc/external/mit/xf86-video-ag10e/dist/src: ag10e_driver.c xsrc/external/mit/xf86-video-apm/dist/src: apm.h apm_driver.c xsrc/external/mit/xf86-video-ark/dist/src: ark_driver.c xsrc/external/mit/xf86-video-ati/dist/src: radeon_driver.c radeon_kms.c xsrc/external/mit/xf86-video-chips/dist/src: ct_driver.c xsrc/external/mit/xf86-video-crime/dist/src: crime_driver.c xsrc/external/mit/xf86-video-glint/dist/src: glint_driver.c xsrc/external/mit/xf86-video-i128/dist/src: i128_driver.c xsrc/external/mit/xf86-video-igs/dist/src: igs_driver.c xsrc/external/mit/xf86-video-imstt/dist/src: imstt_driver.c xsrc/external/mit/xf86-video-intel-old/dist/src: i810_driver.c i830_driver.c i830_i2c.c xsrc/external/mit/xf86-video-intel-old/dist/uxa: uxa-priv.h xsrc/external/mit/xf86-video-newport/dist/src: newport_driver.c xsrc/external/mit/xf86-video-nsc/dist/src: nsc_driver.c nsc_gx1_driver.c nsc_gx2_driver.c xsrc/external/mit/xf86-video-nv/dist/src: g80_driver.c nv_driver.c nv_include.h riva_driver.c riva_include.h xsrc/external/mit/xf86-video-nvxbox/dist/src: nv_driver.c nv_include.h xsrc/external/mit/xf86-video-pnozz/dist/src: pnozz_driver.c xsrc/external/mit/xf86-video-rendition/dist/src: rendition.c rendition.h xsrc/external/mit/xf86-video-s3/dist/src: s3_driver.c xsrc/external/mit/xf86-video-s3virge/dist/src: s3v_driver.c xsrc/external/mit/xf86-video-suncg14/dist/src: cg14_driver.c xsrc/external/mit/xf86-video-suntcx/dist/src: tcx_driver.c xsrc/external/mit/xf86-video-tga/dist/src: tga_accel.c tga_driver.c xsrc/external/mit/xf86-video-tseng/dist/src: tseng_driver.c xsrc/external/mit/xf86-video-wsfb/dist/src: wsfb_driver.c xsrc/external/mit/xf86-video-xgi/dist/src: xgi_driver.c xsrc/external/mit/xorg-server/dist/hw/netbsd/x68k: x68kGraph.c Log Message: mibstore.h and its miInitializeBackingStore() have been otherwise empty since at least xorg-server 1.10. remove all reference to them as the header is gone in xorg-server 1.18. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 \ xsrc/external/mit/xf86-video-ag10e/dist/src/ag10e_driver.c cvs rdiff -u -r1.1.1.4 -r1.2 xsrc/external/mit/xf86-video-apm/dist/src/apm.h cvs rdiff -u -r1.1.1.5 -r1.2 \ xsrc/external/mit/xf86-video-apm/dist/src/apm_driver.c cvs rdiff -u -r1.1.1.4 -r1.2 \ xsrc/external/mit/xf86-video-ark/dist/src/ark_driver.c cvs rdiff -u -r1.12 -r1.13 \ xsrc/external/mit/xf86-video-ati/dist/src/radeon_driver.c cvs rdiff -u -r1.1.1.8 -r1.2 \ xsrc/external/mit/xf86-video-ati/dist/src/radeon_kms.c cvs rdiff -u -r1.16 -r1.17 \ xsrc/external/mit/xf86-video-chips/dist/src/ct_driver.c cvs rdiff -u -r1.11 -r1.12 \ xsrc/external/mit/xf86-video-crime/dist/src/crime_driver.c cvs rdiff -u -r1.6 -r1.7 \ xsrc/external/mit/xf86-video-glint/dist/src/glint_driver.c cvs rdiff -u -r1.1.1.5 -r1.2 \ xsrc/external/mit/xf86-video-i128/dist/src/i128_driver.c cvs rdiff -u -r1.11 -r1.12 \ xsrc/external/mit/xf86-video-igs/dist/src/igs_driver.c cvs rdiff -u -r1.4 -r1.5 \ xsrc/external/mit/xf86-video-imstt/dist/src/imstt_driver.c cvs rdiff -u -r1.1.1.1 -r1.2 \ xsrc/external/mit/xf86-video-intel-old/dist/src/i810_driver.c \ xsrc/external/mit/xf86-video-intel-old/dist/src/i830_i2c.c cvs rdiff -u -r1.2 -r1.3 \ xsrc/external/mit/xf86-video-intel-old/dist/src/i830_driver.c cvs rdiff -u -r1.2 -r1.3 \ xsrc/external/mit/xf86-video-intel-old/dist/uxa/uxa-priv.h cvs rdiff -u -r1.11 -r1.12 \ xsrc/external/mit/xf86-video-newport/dist/src/newport_driver.c cvs rdiff -u -r1.1.1.1 -r1.2 \ xsrc/external/mit/xf86-video-nsc/dist/src/nsc_driver.c \ xsrc/external/mit/xf86-video-nsc/dist/src/nsc_gx1_driver.c \ xsrc/external/mit/xf86-video-nsc/dist/src/nsc_gx2_driver.c cvs rdiff -u -r1.1.1.6 -r1.2 \ xsrc/external/mit/xf86-video-nv/dist/src/g80_driver.c cvs rdiff -u -r1.7 -r1.8 xsrc/external/mit/xf86-video-nv/dist/src/nv_driver.c cvs rdiff -u -r1.2 -r1.3 \ xsrc/external/mit/xf86-video-nv/dist/src/nv_include.h cvs rdiff -u -r1.1.1.5 -r1.2 \ xsrc/external/mit/xf86-video-nv/dist/src/riva_driver.c cvs rdiff -u -r1.1.1.3 -r1.2 \ xsrc/external/mit/xf86-video-nv/dist/src/riva_include.h cvs rdiff -u -r1.3 -r1.4 \ xsrc/external/mit/xf86-video-nvxbox/dist/src/nv_driver.c cvs rdiff -u -r1.1.1.1 -r1.2 \ xsrc/external/mit/xf86-video-nvxbox/dist/src/nv_include.h cvs rdiff -u -r1.5 -r1.6 \ xsrc/external/mit/xf86-video-pnozz/dist/src/pnozz_driver.c cvs rdiff -u -r1.1.1.5 -r1.2 \ xsrc/external/mit/xf86-video-rendition/dist/src/rendition.c \ xsrc/external/mit/xf86-video-rendition/dist/src/rendition.h cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xf86-video
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 01:39:40 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: More improvements from jnemeth To generate a diff of this commit: cvs rdiff -u -r1.116 -r1.117 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 01:41:18 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: More important fix: there is an /etc/skel but no /usr/share/skel. To generate a diff of this commit: cvs rdiff -u -r1.117 -r1.118 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 01:46:51 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: Document /etc/login.conf, /etc/profile, /etc/ttyaction. To generate a diff of this commit: cvs rdiff -u -r1.118 -r1.119 src/share/man/man7/hier.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/moused
Module Name:src Committed By: uwe Date: Tue Aug 16 02:04:01 UTC 2016 Modified Files: src/usr.sbin/moused: moused.8 Log Message: Use .An -nosplit to avoid unwanted line breaks in the middle of a sentence. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/moused/moused.8 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: dholland Date: Tue Aug 16 02:29:44 UTC 2016 Modified Files: src/share/man/man7: hier.7 Log Message: More stuff spotted by jnemeth: fix wording for /var/mail, and document utmpx/wtmpx. While here also document dmesg.boot. To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120 src/share/man/man7/hier.7 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-apm
Module Name:src Committed By: mrg Date: Tue Aug 16 06:19:47 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers/xf86-video-apm: Makefile Log Message: define XV_NEW_REPUT. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/external/mit/xorg/server/drivers/xf86-video-apm/Makefile 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
Module Name:src Committed By: mrg Date: Tue Aug 16 06:24:03 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers: Makefile.xf86-driver src/external/mit/xorg/server/drivers/xf86-video-ark: Makefile src/external/mit/xorg/server/drivers/xf86-video-ast: Makefile src/external/mit/xorg/server/drivers/xf86-video-ati: Makefile src/external/mit/xorg/server/drivers/xf86-video-i740: Makefile src/external/mit/xorg/server/drivers/xf86-video-intel: Makefile src/external/mit/xorg/server/drivers/xf86-video-mach64: Makefile src/external/mit/xorg/server/drivers/xf86-video-mga: Makefile src/external/mit/xorg/server/drivers/xf86-video-neomagic: Makefile src/external/mit/xorg/server/drivers/xf86-video-nv: Makefile src/external/mit/xorg/server/drivers/xf86-video-r128: Makefile src/external/mit/xorg/server/drivers/xf86-video-radeon-kms: Makefile src/external/mit/xorg/server/drivers/xf86-video-s3: Makefile src/external/mit/xorg/server/drivers/xf86-video-savage: Makefile src/external/mit/xorg/server/drivers/xf86-video-suncg14: Makefile src/external/mit/xorg/server/drivers/xf86-video-suncg6: Makefile src/external/mit/xorg/server/drivers/xf86-video-sunffb: Makefile src/external/mit/xorg/server/drivers/xf86-video-sunleo: Makefile src/external/mit/xorg/server/drivers/xf86-video-suntcx: Makefile src/external/mit/xorg/server/drivers/xf86-video-tdfx: Makefile src/external/mit/xorg/server/drivers/xf86-video-trident: Makefile Log Message: define HAVE_XAA_H in Makefile.xf86-driver for xorg-server 1.10 only, move it out of many driver makefiles. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 \ src/external/mit/xorg/server/drivers/Makefile.xf86-driver cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-ark/Makefile cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-ast/Makefile cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-ati/Makefile cvs rdiff -u -r1.3 -r1.4 \ src/external/mit/xorg/server/drivers/xf86-video-i740/Makefile cvs rdiff -u -r1.22 -r1.23 \ src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile cvs rdiff -u -r1.8 -r1.9 \ src/external/mit/xorg/server/drivers/xf86-video-mach64/Makefile cvs rdiff -u -r1.12 -r1.13 \ src/external/mit/xorg/server/drivers/xf86-video-mga/Makefile cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-neomagic/Makefile cvs rdiff -u -r1.7 -r1.8 \ src/external/mit/xorg/server/drivers/xf86-video-nv/Makefile cvs rdiff -u -r1.10 -r1.11 \ src/external/mit/xorg/server/drivers/xf86-video-r128/Makefile cvs rdiff -u -r1.2 -r1.3 \ src/external/mit/xorg/server/drivers/xf86-video-radeon-kms/Makefile cvs rdiff -u -r1.11 -r1.12 \ src/external/mit/xorg/server/drivers/xf86-video-s3/Makefile cvs rdiff -u -r1.13 -r1.14 \ src/external/mit/xorg/server/drivers/xf86-video-savage/Makefile cvs rdiff -u -r1.5 -r1.6 \ src/external/mit/xorg/server/drivers/xf86-video-suncg14/Makefile cvs rdiff -u -r1.4 -r1.5 \ src/external/mit/xorg/server/drivers/xf86-video-suncg6/Makefile cvs rdiff -u -r1.6 -r1.7 \ src/external/mit/xorg/server/drivers/xf86-video-sunffb/Makefile cvs rdiff -u -r1.2 -r1.3 \ src/external/mit/xorg/server/drivers/xf86-video-sunleo/Makefile cvs rdiff -u -r1.2 -r1.3 \ src/external/mit/xorg/server/drivers/xf86-video-suntcx/Makefile cvs rdiff -u -r1.13 -r1.14 \ src/external/mit/xorg/server/drivers/xf86-video-tdfx/Makefile cvs rdiff -u -r1.7 -r1.8 \ src/external/mit/xorg/server/drivers/xf86-video-trident/Makefile 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-wsfb/dist/src
Module Name:xsrc Committed By: mrg Date: Tue Aug 16 06:28:25 UTC 2016 Modified Files: xsrc/external/mit/xf86-video-wsfb/dist/src: wsfb.h wsfb_driver.c Added Files: xsrc/external/mit/xf86-video-wsfb/dist/src: compat-api.h Log Message: port xf86-video-wsfb to compat-api.h style interfaces To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \ xsrc/external/mit/xf86-video-wsfb/dist/src/compat-api.h cvs rdiff -u -r1.5 -r1.6 xsrc/external/mit/xf86-video-wsfb/dist/src/wsfb.h cvs rdiff -u -r1.27 -r1.28 \ xsrc/external/mit/xf86-video-wsfb/dist/src/wsfb_driver.c 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-input-ws/dist/src
Module Name:xsrc Committed By: mrg Date: Tue Aug 16 06:29:28 UTC 2016 Modified Files: xsrc/external/mit/xf86-input-ws/dist/src: ws.c ws.h Log Message: apply const from xorg-server 1.18 To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xf86-input-ws/dist/src/ws.c cvs rdiff -u -r1.1.1.2 -r1.2 xsrc/external/mit/xf86-input-ws/dist/src/ws.h 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-input-mouse
Module Name:src Committed By: mrg Date: Tue Aug 16 06:53:01 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers/xf86-input-mouse: Makefile Log Message: drivers should not define HAVE_XORG_CONFIG_H To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 \ src/external/mit/xorg/server/drivers/xf86-input-mouse/Makefile 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-geode
Module Name:src Committed By: mrg Date: Tue Aug 16 06:54:12 UTC 2016 Modified Files: src/external/mit/xorg/server/drivers/xf86-video-geode: Makefile Log Message: apply -Wno-error more liberally, needed for xorg-server 1.18 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 \ src/external/mit/xorg/server/drivers/xf86-video-geode/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.