CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: msaitoh Date: Sun Nov 9 08:00:41 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1165-1167, 1171, 1176-1177, 1179 and 1181-1185. To generate a diff of this commit: cvs rdiff -u -r1.1.2.152 -r1.1.2.153 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src/doc
Module Name:src Committed By: msaitoh Date: Sun Nov 9 08:02:17 UTC 2014 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.7 Log Message: Ticket 1171, 1176, 1179 and 1181. To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-6.0.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-1] src/doc
Module Name:src Committed By: msaitoh Date: Sun Nov 9 08:01:58 UTC 2014 Modified Files: src/doc [netbsd-6-1]: CHANGES-6.1.6 Log Message: Ticket 1171, 1176, 1179 and 1181. To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-6.1.6 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/arm32
Module Name:src Committed By: skrll Date: Sun Nov 9 09:18:07 UTC 2014 Modified Files: src/sys/arch/arm/arm32: bus_dma.c Log Message: Post a dmb before invalidating the cache in the post-{read,write} operations to ensure that any/all cachelines brought in via speculation are really flushed. To generate a diff of this commit: cvs rdiff -u -r1.88 -r1.89 src/sys/arch/arm/arm32/bus_dma.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/arm/arm
Module Name:src Committed By: skrll Date: Sun Nov 9 09:21:57 UTC 2014 Modified Files: src/sys/arch/arm/arm: cpufunc_asm_armv7.S Log Message: Ensure all memory operations are complete by before wfi. For example, the cpu could have just been in uvm_pageidlezero. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arm/arm/cpufunc_asm_armv7.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/fs/puffs
Module Name:src Committed By: msaitoh Date: Sun Nov 9 10:07:31 UTC 2014 Modified Files: src/sys/fs/puffs [netbsd-7]: puffs_vnops.c Log Message: Pull up following revision(s) (requested by manu in ticket #193): sys/fs/puffs/puffs_vnops.c: revision 1.198 PUFFS direct I/O cache fix There are a few situations where we must take care of the cache if direct I/O was enabled: - if we do direct I/O for write but not for read, then any write must invalidate the cache so that a reader gets the written data and not the not-updated cache. - if we used a vnode without direct I/O and it is enabled for writing, we must flush the cache before compeling the open operation, so that the cachec write are not lost. And at inactive time, we wipe direct I/O flags so that a new open without direct I/O does not inherit direct I/O. To generate a diff of this commit: cvs rdiff -u -r1.182.2.9 -r1.182.2.10 src/sys/fs/puffs/puffs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/lib/libperfuse
Module Name:src Committed By: msaitoh Date: Sun Nov 9 10:06:34 UTC 2014 Modified Files: src/lib/libperfuse [netbsd-7]: ops.c Log Message: Pull up following revision(s) (requested by manu in ticket #192): lib/libperfuse/ops.c: revision 1.80 Restore build with -DDEBUG, and avoid a spurious diagnostic error with -DDEBUG To generate a diff of this commit: cvs rdiff -u -r1.66.2.11 -r1.66.2.12 src/lib/libperfuse/ops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/fs/puffs
Module Name:src Committed By: msaitoh Date: Sun Nov 9 10:09:32 UTC 2014 Modified Files: src/sys/fs/puffs [netbsd-7]: puffs_node.c puffs_vnops.c Log Message: Pull up following revision(s) (requested by manu in ticket #194): sys/fs/puffs/puffs_vnops.c: revision 1.197 sys/fs/puffs/puffs_node.c: revision 1.35 Fix PUFFS node use-after-reclaim When puffs_cookie2vnode() misses an entry, vcache_get() creates a new node (puffs_vfsop_loadvnode being called to initialize the PUFFS part), then it discovers it is VNON, and tries to vrele() it. vrele() calls VOP_INACTIVE(), which led us in puffs_vnop_inactive() where we sent a request to the filesystem for a node that already had been reclaimed. The fix is to check for VNON nodes in puffs_vnop_inactive() and to return without doing anyting. This is suboptimal, but a better workaround would probably need to modify vcache API, with an impact on other filesystems. Let us keep it simple. To generate a diff of this commit: cvs rdiff -u -r1.31.4.3 -r1.31.4.4 src/sys/fs/puffs/puffs_node.c cvs rdiff -u -r1.182.2.10 -r1.182.2.11 src/sys/fs/puffs/puffs_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
Module Name:src Committed By: mlelstv Date: Sun Nov 9 10:10:08 UTC 2014 Modified Files: src/sys/arch/emips/ebus: ace_ebus.c flash_ebus.c src/sys/dev/mca: ed_mca.c src/sys/dev/mscp: mscp_disk.c src/sys/dev/ofw: ofdisk.c src/sys/dev/qbus: rl.c Log Message: support DIOCMWEDGES ioctl To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/arch/emips/ebus/ace_ebus.c cvs rdiff -u -r1.11 -r1.12 src/sys/arch/emips/ebus/flash_ebus.c cvs rdiff -u -r1.58 -r1.59 src/sys/dev/mca/ed_mca.c cvs rdiff -u -r1.81 -r1.82 src/sys/dev/mscp/mscp_disk.c cvs rdiff -u -r1.47 -r1.48 src/sys/dev/ofw/ofdisk.c cvs rdiff -u -r1.45 -r1.46 src/sys/dev/qbus/rl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: msaitoh Date: Sun Nov 9 10:11:26 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Ticket 192-194. To generate a diff of this commit: cvs rdiff -u -r1.1.2.79 -r1.1.2.80 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/lib/libperfuse
Module Name:src Committed By: msaitoh Date: Sun Nov 9 11:03:41 UTC 2014 Modified Files: src/lib/libperfuse [netbsd-6]: ops.c Log Message: Pull up following revision(s) (requested by manu in ticket #1186): lib/libperfuse/ops.c: revision 1.80 Restore build with -DDEBUG, and avoid a spurious diagnostic error with -DDEBUG To generate a diff of this commit: cvs rdiff -u -r1.50.2.17 -r1.50.2.18 src/lib/libperfuse/ops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/fs/puffs
Module Name:src Committed By: msaitoh Date: Sun Nov 9 11:05:15 UTC 2014 Modified Files: src/sys/fs/puffs [netbsd-6]: puffs_vnops.c Log Message: Pull up following revision(s) (requested by manu in ticket #1187): sys/fs/puffs/puffs_vnops.c: revision 1.198 PUFFS direct I/O cache fix There are a few situations where we must take care of the cache if direct I/O was enabled: - if we do direct I/O for write but not for read, then any write must invalidate the cache so that a reader gets the written data and not the not-updated cache. - if we used a vnode without direct I/O and it is enabled for writing, we must flush the cache before compeling the open operation, so that the cachec write are not lost. And at inactive time, we wipe direct I/O flags so that a new open without direct I/O does not inherit direct I/O. To generate a diff of this commit: cvs rdiff -u -r1.163.2.9 -r1.163.2.10 src/sys/fs/puffs/puffs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: msaitoh Date: Sun Nov 9 11:09:11 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1186 and 1187. To generate a diff of this commit: cvs rdiff -u -r1.1.2.153 -r1.1.2.154 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src
Module Name:src Committed By: martin Date: Sun Nov 9 12:03:18 UTC 2014 Modified Files: src/share/man/man4 [netbsd-6]: wm.4 src/sys/dev/pci [netbsd-6]: if_wm.c if_wmreg.h if_wmvar.h pcidevs Log Message: Pullup the following revisions, requested by msaitoh in ticket #1188: sys/dev/pci/pcidevs 1.1172 sys/dev/pci/if_wm.c 1.263-1.266 via patch sys/dev/pci/if_wmreg.h 1.55-1.56 sys/dev/pci/if_wmvar.h 1.17 share/man/man4/wm.4 1.26-1.27 and 1.29 via patch - Add I354 support. - Insert completion barrier between register write and delay(). - Fix the definition of CTRL_GIO_M_DIS. This bit is not bit 3 but bit 2. - Cleanup To generate a diff of this commit: cvs rdiff -u -r1.21.6.1 -r1.21.6.2 src/share/man/man4/wm.4 cvs rdiff -u -r1.227.2.11 -r1.227.2.12 src/sys/dev/pci/if_wm.c cvs rdiff -u -r1.46.2.5 -r1.46.2.6 src/sys/dev/pci/if_wmreg.h cvs rdiff -u -r1.12.10.3 -r1.12.10.4 src/sys/dev/pci/if_wmvar.h cvs rdiff -u -r1.1102.2.13 -r1.1102.2.14 src/sys/dev/pci/pcidevs Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/dev/pci
Module Name:src Committed By: martin Date: Sun Nov 9 12:04:40 UTC 2014 Modified Files: src/sys/dev/pci [netbsd-6]: pcidevs.h pcidevs_data.h Log Message: Regen for ticket #1188 To generate a diff of this commit: cvs rdiff -u -r1.1097.2.13 -r1.1097.2.14 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1096.2.13 -r1.1096.2.14 src/sys/dev/pci/pcidevs_data.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: martin Date: Sun Nov 9 12:15:48 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Tickets #1188 and #1189 To generate a diff of this commit: cvs rdiff -u -r1.1.2.154 -r1.1.2.155 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys
Module Name:src Committed By: martin Date: Sun Nov 9 12:13:16 UTC 2014 Modified Files: src/sys/arch/mips/adm5120/dev [netbsd-6]: if_admsw.c src/sys/dev/ic [netbsd-6]: rtl80x9.c src/sys/dev/mii [netbsd-6]: acphy.c amhphy.c bmtphy.c brgphy.c brgphyreg.h ciphy.c ciphyreg.h dmphy.c gentbi.c glxtphy.c gphyter.c icsphy.c igphy.c ihphy.c ikphy.c inphy.c iophy.c lxtphy.c makphy.c mii.h mvphy.c nsphy.c nsphyter.c qsphy.c rlphy.c sqphy.c tlphy.c tqphy.c ukphy_subr.c urlphy.c src/sys/dev/pci [netbsd-6]: if_kse.c if_txp.c if_wm.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #1189): sys/dev/pci/if_wm.c: revision 1.270 sys/dev/mii/inphy.c: revision 1.53 sys/dev/mii/glxtphy.c: revision 1.24 sys/dev/mii/tlphy.c: revision 1.62 sys/dev/mii/iophy.c: revision 1.37 sys/dev/mii/brgphy.c: revision 1.70 sys/dev/mii/ihphy.c: revision 1.8 sys/dev/mii/bmtphy.c: revision 1.31 sys/dev/mii/urlphy.c: revision 1.30 sys/dev/mii/makphy.c: revision 1.40 sys/dev/mii/qsphy.c: revision 1.48 sys/dev/mii/igphy.c: revision 1.23 sys/dev/mii/nsphy.c: revision 1.58 sys/dev/mii/mvphy.c: revision 1.10 sys/dev/pci/if_txp.c: revision 1.41 sys/dev/mii/nsphy.c: revision 1.59 sys/dev/mii/rlphy.c: revision 1.28 sys/dev/mii/icsphy.c: revision 1.49 sys/dev/mii/rlphy.c: revision 1.29 sys/dev/mii/lxtphy.c: revision 1.49 sys/dev/mii/ciphyreg.h: revision 1.5 sys/dev/mii/nsphyter.c: revision 1.38 sys/dev/mii/sqphy.c: revision 1.50 sys/dev/mii/gentbi.c: revision 1.26 sys/dev/mii/gentbi.c: revision 1.27 sys/dev/mii/tqphy.c: revision 1.39 sys/dev/mii/ikphy.c: revision 1.10 sys/dev/mii/dmphy.c: revision 1.35 sys/dev/mii/amhphy.c: revision 1.20 sys/dev/mii/acphy.c: revision 1.24 sys/dev/mii/ciphy.c: revision 1.25 sys/dev/mii/brgphyreg.h: revision 1.8 sys/dev/mii/ukphy_subr.c: revision 1.12 sys/dev/ic/rtl80x9.c: revision 1.16 sys/arch/mips/adm5120/dev/if_admsw.c: revision 1.12 sys/dev/pci/if_kse.c: revision 1.28 sys/dev/mii/ukphy_subr.c: revision 1.13 sys/dev/mii/mii.h: revision 1.18 sys/dev/mii/gphyter.c: revision 1.29 No functional change: - Fix typo. - Remove trailing white spaces. - Capitalize comments. - Tabify. - KNF. IFM_FDX and IFM_HDX use different bit, so set IFM_HDX bit if it's not full duplex. For many drivers, it recognize half duplex if IFM_FDX isn't set, but not for others. Same as {Free|Open}BSD. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.10.8.1 src/sys/arch/mips/adm5120/dev/if_admsw.c cvs rdiff -u -r1.15 -r1.15.18.1 src/sys/dev/ic/rtl80x9.c cvs rdiff -u -r1.23 -r1.23.22.1 src/sys/dev/mii/acphy.c cvs rdiff -u -r1.19 -r1.19.22.1 src/sys/dev/mii/amhphy.c cvs rdiff -u -r1.30 -r1.30.18.1 src/sys/dev/mii/bmtphy.c cvs rdiff -u -r1.59.8.5 -r1.59.8.6 src/sys/dev/mii/brgphy.c cvs rdiff -u -r1.5 -r1.5.14.1 src/sys/dev/mii/brgphyreg.h cvs rdiff -u -r1.19 -r1.19.18.1 src/sys/dev/mii/ciphy.c cvs rdiff -u -r1.4 -r1.4.106.1 src/sys/dev/mii/ciphyreg.h cvs rdiff -u -r1.34 -r1.34.18.1 src/sys/dev/mii/dmphy.c cvs rdiff -u -r1.24 -r1.24.18.1 src/sys/dev/mii/gentbi.c cvs rdiff -u -r1.23 -r1.23.18.1 src/sys/dev/mii/glxtphy.c cvs rdiff -u -r1.28 -r1.28.18.1 src/sys/dev/mii/gphyter.c cvs rdiff -u -r1.48 -r1.48.18.1 src/sys/dev/mii/icsphy.c \ src/sys/dev/mii/lxtphy.c cvs rdiff -u -r1.21 -r1.21.16.1 src/sys/dev/mii/igphy.c cvs rdiff -u -r1.2 -r1.2.10.1 src/sys/dev/mii/ihphy.c cvs rdiff -u -r1.9 -r1.9.18.1 src/sys/dev/mii/ikphy.c src/sys/dev/mii/mvphy.c cvs rdiff -u -r1.52 -r1.52.18.1 src/sys/dev/mii/inphy.c cvs rdiff -u -r1.36 -r1.36.18.1 src/sys/dev/mii/iophy.c cvs rdiff -u -r1.37 -r1.37.2.1 src/sys/dev/mii/makphy.c cvs rdiff -u -r1.14.18.1 -r1.14.18.2 src/sys/dev/mii/mii.h cvs rdiff -u -r1.57 -r1.57.18.1 src/sys/dev/mii/nsphy.c cvs rdiff -u -r1.36 -r1.36.4.1 src/sys/dev/mii/nsphyter.c cvs rdiff -u -r1.47 -r1.47.18.1 src/sys/dev/mii/qsphy.c cvs rdiff -u -r1.27 -r1.27.10.1 src/sys/dev/mii/rlphy.c cvs rdiff -u -r1.49 -r1.49.18.1 src/sys/dev/mii/sqphy.c cvs rdiff -u -r1.59 -r1.59.18.1 src/sys/dev/mii/tlphy.c cvs rdiff -u -r1.38 -r1.38.18.1 src/sys/dev/mii/tqphy.c cvs rdiff -u -r1.11 -r1.11.18.1 src/sys/dev/mii/ukphy_subr.c cvs rdiff -u -r1.25 -r1.25.20.1 src/sys/dev/mii/urlphy.c cvs rdiff -u -r1.22 -r1.22.14.1 src/sys/dev/pci/if_kse.c cvs rdiff -u -r1.38 -r1.38.14.1 src/sys/dev/pci/if_txp.c cvs rdiff -u -r1.227.2.12 -r1.227.2.13 src/sys/dev/pci/if_wm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src
Module Name:src Committed By: martin Date: Sun Nov 9 13:22:59 UTC 2014 Modified Files: src/distrib/sets/lists/xcomp [netbsd-7]: mi src/external/mit/xorg/server/xorg-server/include [netbsd-7]: Makefile Log Message: Pull up following revision(s) (requested by snj in ticket #184): distrib/sets/lists/xcomp/mi: revision 1.153 external/mit/xorg/server/xorg-server/include/Makefile: revision 1.12 Install fbpict.h (e.g., new xf86-video-intel assumes it exists if RENDER is defined) To generate a diff of this commit: cvs rdiff -u -r1.152 -r1.152.2.1 src/distrib/sets/lists/xcomp/mi cvs rdiff -u -r1.11 -r1.11.4.1 \ 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/sys/arch/arm/allwinner
Module Name:src Committed By: jmcneill Date: Sun Nov 9 14:10:54 UTC 2014 Modified Files: src/sys/arch/arm/allwinner: awin_board.c awin_hdmi.c awin_io.c awin_reg.h awin_var.h files.awin Added Files: src/sys/arch/arm/allwinner: awin_debe.c awin_fb.c awin_tcon.c Log Message: awin framebuffer support, not sure if this works yet because hdmi is not working yet To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/arch/arm/allwinner/awin_board.c cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/allwinner/awin_debe.c \ src/sys/arch/arm/allwinner/awin_fb.c \ src/sys/arch/arm/allwinner/awin_tcon.c cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/allwinner/awin_hdmi.c cvs rdiff -u -r1.26 -r1.27 src/sys/arch/arm/allwinner/awin_io.c cvs rdiff -u -r1.45 -r1.46 src/sys/arch/arm/allwinner/awin_reg.h cvs rdiff -u -r1.19 -r1.20 src/sys/arch/arm/allwinner/awin_var.h cvs rdiff -u -r1.21 -r1.22 src/sys/arch/arm/allwinner/files.awin 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/conf
Module Name:src Committed By: jmcneill Date: Sun Nov 9 14:11:38 UTC 2014 Modified Files: src/sys/arch/evbarm/conf: HUMMINGBIRD_A31 Log Message: add awintcon, awindebe, genfb, wsdisplay, wsmux, wsfont To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arch/evbarm/conf/HUMMINGBIRD_A31 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: nonaka Date: Sun Nov 9 14:29:13 UTC 2014 Modified Files: src/sys/dev/pci: if_iwn.c Log Message: fix error messages. To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/sys/dev/pci/if_iwn.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/arm/allwinner
Module Name:src Committed By: jmcneill Date: Sun Nov 9 14:30:55 UTC 2014 Modified Files: src/sys/arch/arm/allwinner: awin_debe.c awin_fb.c awin_hdmi.c awin_tcon.c awin_var.h files.awin Log Message: If we can't determine the preferred display mode for some reason, fallback to 640x480. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/allwinner/awin_debe.c \ src/sys/arch/arm/allwinner/awin_fb.c \ src/sys/arch/arm/allwinner/awin_tcon.c cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/allwinner/awin_hdmi.c cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arm/allwinner/awin_var.h cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/allwinner/files.awin Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/wscons
Module Name:src Committed By: jmcneill Date: Sun Nov 9 14:33:21 UTC 2014 Modified Files: src/sys/dev/wscons: wsconsio.h Log Message: add WSDISPLAY_TYPE_ALLWINNER To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 src/sys/dev/wscons/wsconsio.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/pci
Module Name:src Committed By: nonaka Date: Sun Nov 9 14:40:54 UTC 2014 Modified Files: src/sys/dev/pci: if_iwn.c if_iwnreg.h Log Message: Use correct IWN_HW_REV_TYPE_MASK. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.74 src/sys/dev/pci/if_iwn.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/pci/if_iwnreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch
Module Name:src Committed By: martin Date: Sun Nov 9 14:42:33 UTC 2014 Modified Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_board.c awin_com.c awin_eth.c awin_gige.c awin_gpio.c awin_intr.h awin_io.c awin_mmc.c awin_reg.h awin_twi.c awin_usb.c awin_var.h awin_wdt.c files.awin src/sys/arch/evbarm/awin [netbsd-7]: awin_machdep.c awin_start.S Added Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_ac.c awin_cnt.c awin_dma.c awin_dma.h awin_dma_a10.c awin_dma_a31.c awin_hdmi.c awin_ir.c awin_otg.c awin_otgreg.h awin_p2wi.c awin_rtc.c src/sys/arch/evbarm/awin [netbsd-7]: awin_sysconfig.c awin_sysconfig.h Log Message: Catch up to -current as of ~1 hour ago for sys/arch/arm/allwinner and sys/arch/evbarm/awin. Requested by skrll in ticket #203. To generate a diff of this commit: cvs rdiff -u -r0 -r1.16.2.2 src/sys/arch/arm/allwinner/awin_ac.c cvs rdiff -u -r1.14 -r1.14.6.1 src/sys/arch/arm/allwinner/awin_board.c cvs rdiff -u -r0 -r1.1.2.2 src/sys/arch/arm/allwinner/awin_cnt.c \ src/sys/arch/arm/allwinner/awin_dma.h \ src/sys/arch/arm/allwinner/awin_ir.c \ src/sys/arch/arm/allwinner/awin_p2wi.c cvs rdiff -u -r1.5 -r1.5.10.1 src/sys/arch/arm/allwinner/awin_com.c cvs rdiff -u -r0 -r1.5.2.2 src/sys/arch/arm/allwinner/awin_dma.c \ src/sys/arch/arm/allwinner/awin_otg.c cvs rdiff -u -r0 -r1.2.2.2 src/sys/arch/arm/allwinner/awin_dma_a10.c \ src/sys/arch/arm/allwinner/awin_dma_a31.c cvs rdiff -u -r1.5 -r1.5.2.1 src/sys/arch/arm/allwinner/awin_eth.c cvs rdiff -u -r1.4 -r1.4.10.1 src/sys/arch/arm/allwinner/awin_gige.c cvs rdiff -u -r1.8 -r1.8.10.1 src/sys/arch/arm/allwinner/awin_gpio.c \ src/sys/arch/arm/allwinner/awin_io.c \ src/sys/arch/arm/allwinner/files.awin cvs rdiff -u -r0 -r1.4.2.2 src/sys/arch/arm/allwinner/awin_hdmi.c \ src/sys/arch/arm/allwinner/awin_otgreg.h cvs rdiff -u -r1.3 -r1.3.10.1 src/sys/arch/arm/allwinner/awin_intr.h \ src/sys/arch/arm/allwinner/awin_twi.c \ src/sys/arch/arm/allwinner/awin_wdt.c cvs rdiff -u -r1.3.10.1 -r1.3.10.2 src/sys/arch/arm/allwinner/awin_mmc.c cvs rdiff -u -r1.14.2.1 -r1.14.2.2 src/sys/arch/arm/allwinner/awin_reg.h cvs rdiff -u -r0 -r1.7.2.2 src/sys/arch/arm/allwinner/awin_rtc.c cvs rdiff -u -r1.12 -r1.12.2.1 src/sys/arch/arm/allwinner/awin_usb.c cvs rdiff -u -r1.10 -r1.10.2.1 src/sys/arch/arm/allwinner/awin_var.h cvs rdiff -u -r1.8.2.3 -r1.8.2.4 src/sys/arch/evbarm/awin/awin_machdep.c cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/arch/evbarm/awin/awin_start.S cvs rdiff -u -r0 -r1.1.2.2 src/sys/arch/evbarm/awin/awin_sysconfig.c \ src/sys/arch/evbarm/awin/awin_sysconfig.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/fs/smbfs
Module Name:src Committed By: martin Date: Sun Nov 9 14:50:23 UTC 2014 Modified Files: src/sys/fs/smbfs [netbsd-7]: smbfs_vnops.c Log Message: Pull up following revision(s) (requested by nakayama in ticket #187): sys/fs/smbfs/smbfs_vnops.c: revision 1.92 Fix vnode locking changes in rev.1.89: - lock vnode by the end of cache_purge and vput. To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.91.2.1 src/sys/fs/smbfs/smbfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys
Module Name:src Committed By: martin Date: Sun Nov 9 16:05:26 UTC 2014 Modified Files: src/sys/arch/arm/arm [netbsd-7]: arm_machdep.c cpufunc_asm_arm11.S cpufunc_asm_armv7.S cpufunc_asm_pj4b.S undefined.c src/sys/arch/arm/arm32 [netbsd-7]: arm32_boot.c arm32_kvminit.c arm32_machdep.c arm32_tlb.c db_interface.c db_machdep.c pmap.c src/sys/arch/arm/cortex [netbsd-7]: a9_mpsubr.S gic.c src/sys/arch/arm/include [netbsd-7]: armreg.h src/sys/arch/arm/include/arm32 [netbsd-7]: pmap.h src/sys/arch/arm/mainbus [netbsd-7]: cpu_mainbus.c src/sys/arch/arm/pic [netbsd-7]: pic.c picvar.h src/sys/arch/evbarm/conf [netbsd-7]: BPI CUBIETRUCK src/sys/uvm/pmap [netbsd-7]: pmap_tlb.c Log Message: Pull up following revision(s) (requested by skrll in ticket #188): sys/arch/arm/include/arm32/pmap.h: revision 1.136 sys/arch/arm/include/armreg.h: revision 1.100 sys/arch/arm/cortex/gic.c: revision 1.11 sys/arch/arm/arm32/db_interface.c: revision 1.54 sys/arch/arm/include/armreg.h: revision 1.101 sys/arch/arm/cortex/gic.c: revision 1.12 sys/arch/arm/arm32/arm32_machdep.c: revision 1.107 sys/arch/arm/arm/cpufunc_asm_armv7.S: revision 1.19 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.20 sys/arch/evbarm/conf/BPI: revision 1.5 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.21 sys/arch/arm/arm32/pmap.c: revision 1.306 sys/arch/arm/arm32/db_machdep.c: revision 1.22 sys/arch/arm/arm32/arm32_tlb.c: revision 1.3 sys/arch/arm/arm/undefined.c: revision 1.55 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.22 sys/arch/arm/arm32/pmap.c: revision 1.307 sys/arch/arm/arm32/arm32_tlb.c: revision 1.4 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.23 sys/arch/arm/arm32/arm32_tlb.c: revision 1.5 sys/arch/evbarm/conf/BPI: revision 1.8 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.24 sys/arch/arm/arm32/arm32_tlb.c: revision 1.6 sys/arch/arm/arm32/arm32_tlb.c: revision 1.7 sys/arch/evbarm/conf/CUBIETRUCK: revision 1.5 sys/arch/arm/pic/pic.c: revision 1.23 sys/arch/arm/pic/pic.c: revision 1.24 sys/arch/arm/pic/picvar.h: revision 1.11 sys/arch/arm/arm/cpufunc_asm_armv7.S: revision 1.20 sys/arch/arm/mainbus/cpu_mainbus.c: revision 1.16 sys/arch/arm/arm32/pmap.c: revision 1.298 sys/arch/arm/arm/cpufunc_asm_arm11.S: revision 1.17 sys/arch/arm/arm/cpufunc_asm_pj4b.S: revision 1.5 sys/arch/arm/arm32/pmap.c: revision 1.310 sys/arch/arm/arm32/pmap.c: revision 1.311 sys/arch/arm/arm32/arm32_kvminit.c: revision 1.32 sys/arch/arm/cortex/a9_mpsubr.S: revision 1.19 sys/arch/arm/arm32/arm32_boot.c: revision 1.10 sys/arch/arm/arm/ast.c: revision 1.25 sys/arch/arm/include/armreg.h: revision 1.98 sys/uvm/pmap/pmap_tlb.c: revision 1.10 sys/arch/arm/arm32/arm32_boot.c: revision 1.8 sys/arch/arm/arm32/arm32_boot.c: revision 1.9 sys/arch/arm/arm/arm_machdep.c: revision 1.43 Various ARM MP fixes. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.42.2.1 src/sys/arch/arm/arm/arm_machdep.c cvs rdiff -u -r1.15 -r1.15.2.1 src/sys/arch/arm/arm/cpufunc_asm_arm11.S cvs rdiff -u -r1.18 -r1.18.2.1 src/sys/arch/arm/arm/cpufunc_asm_armv7.S cvs rdiff -u -r1.4 -r1.4.6.1 src/sys/arch/arm/arm/cpufunc_asm_pj4b.S cvs rdiff -u -r1.54 -r1.54.4.1 src/sys/arch/arm/arm/undefined.c cvs rdiff -u -r1.7 -r1.7.4.1 src/sys/arch/arm/arm32/arm32_boot.c cvs rdiff -u -r1.30 -r1.30.2.1 src/sys/arch/arm/arm32/arm32_kvminit.c cvs rdiff -u -r1.105 -r1.105.2.1 src/sys/arch/arm/arm32/arm32_machdep.c cvs rdiff -u -r1.2 -r1.2.6.1 src/sys/arch/arm/arm32/arm32_tlb.c cvs rdiff -u -r1.52 -r1.52.4.1 src/sys/arch/arm/arm32/db_interface.c cvs rdiff -u -r1.21 -r1.21.4.1 src/sys/arch/arm/arm32/db_machdep.c cvs rdiff -u -r1.295.2.1 -r1.295.2.2 src/sys/arch/arm/arm32/pmap.c cvs rdiff -u -r1.18 -r1.18.2.1 src/sys/arch/arm/cortex/a9_mpsubr.S cvs rdiff -u -r1.10 -r1.10.2.1 src/sys/arch/arm/cortex/gic.c cvs rdiff -u -r1.97 -r1.97.2.1 src/sys/arch/arm/include/armreg.h cvs rdiff -u -r1.135 -r1.135.2.1 src/sys/arch/arm/include/arm32/pmap.h cvs rdiff -u -r1.15 -r1.15.2.1 src/sys/arch/arm/mainbus/cpu_mainbus.c cvs rdiff -u -r1.22 -r1.22.2.1 src/sys/arch/arm/pic/pic.c cvs rdiff -u -r1.10 -r1.10.2.1 src/sys/arch/arm/pic/picvar.h cvs rdiff -u -r1.2.2.2 -r1.2.2.3 src/sys/arch/evbarm/conf/BPI cvs rdiff -u -r1.2.4.1 -r1.2.4.2 src/sys/arch/evbarm/conf/CUBIETRUCK cvs rdiff -u -r1.8 -r1.8.4.1 src/sys/uvm/pmap/pmap_tlb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: martin Date: Sun Nov 9 16:09:49 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Tickets #184, #203, #187, #188 To generate a diff of this commit: cvs rdiff -u -r1.1.2.80 -r1.1.2.81 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/arm/allwinner
Module Name:src Committed By: martin Date: Sun Nov 9 16:25:51 UTC 2014 Modified Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_gpio.c Log Message: Fix pullup mishap in previous To generate a diff of this commit: cvs rdiff -u -r1.8.10.1 -r1.8.10.2 src/sys/arch/arm/allwinner/awin_gpio.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: pooka Date: Sun Nov 9 17:39:38 UTC 2014 Modified Files: src/lib/librump: Makefile src/lib/librumpuser: Makefile src/lib/librumpvfs: Makefile src/share/man: Makefile src/sys/rump: Makefile src/sys/rump/librump/rumpkern: Makefile.rumpkern src/sys/rump/librump/rumpvfs: Makefile.rumpvfs Added Files: src/sys/rump/librump/rumpkern: rump.3 rump_lwproc.3 src/sys/rump/librump/rumpvfs: rump_etfs.3 rumpfs.4 src/sys/rump/share: Makefile src/sys/rump/share/man: Makefile src/sys/rump/share/man/man3: Makefile rumpuser.3 src/sys/rump/share/man/man7: Makefile rump_sp.7 Removed Files: src/lib/librump: rump.3 rump_lwproc.3 rump_sp.7 src/lib/librumpuser: rumpuser.3 src/lib/librumpvfs: rump_etfs.3 rumpfs.4 Log Message: Move rump kernel man pages from various sources to sys/rump namely: * src/lib is used only when building for POSIX'y platforms, but the man pages have their use for all platforms * rumpuser.3 is a function of the rump kernel, not one of the of the POSIX'y implementation hosted in src/lib/librumpuser no functional change To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/librump/Makefile cvs rdiff -u -r1.15 -r0 src/lib/librump/rump.3 cvs rdiff -u -r1.7 -r0 src/lib/librump/rump_lwproc.3 \ src/lib/librump/rump_sp.7 cvs rdiff -u -r1.22 -r1.23 src/lib/librumpuser/Makefile cvs rdiff -u -r1.19 -r0 src/lib/librumpuser/rumpuser.3 cvs rdiff -u -r1.4 -r1.5 src/lib/librumpvfs/Makefile cvs rdiff -u -r1.8 -r0 src/lib/librumpvfs/rump_etfs.3 cvs rdiff -u -r1.2 -r0 src/lib/librumpvfs/rumpfs.4 cvs rdiff -u -r1.32 -r1.33 src/share/man/Makefile cvs rdiff -u -r1.6 -r1.7 src/sys/rump/Makefile cvs rdiff -u -r1.149 -r1.150 src/sys/rump/librump/rumpkern/Makefile.rumpkern cvs rdiff -u -r0 -r1.11 src/sys/rump/librump/rumpkern/rump.3 cvs rdiff -u -r0 -r1.1 src/sys/rump/librump/rumpkern/rump_lwproc.3 cvs rdiff -u -r1.41 -r1.42 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs cvs rdiff -u -r0 -r1.1 src/sys/rump/librump/rumpvfs/rump_etfs.3 \ src/sys/rump/librump/rumpvfs/rumpfs.4 cvs rdiff -u -r0 -r1.1 src/sys/rump/share/Makefile cvs rdiff -u -r0 -r1.1 src/sys/rump/share/man/Makefile cvs rdiff -u -r0 -r1.1 src/sys/rump/share/man/man3/Makefile \ src/sys/rump/share/man/man3/rumpuser.3 cvs rdiff -u -r0 -r1.1 src/sys/rump/share/man/man7/Makefile \ src/sys/rump/share/man/man7/rump_sp.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/compat
Module Name:src Committed By: maxv Date: Sun Nov 9 17:48:08 UTC 2014 Modified Files: src/sys/compat/common: compat_util.c if_43.c kern_time_50.c uipc_syscalls_43.c src/sys/compat/linux/arch/alpha: linux_machdep.c linux_pipe.c src/sys/compat/linux/arch/arm: linux_machdep.c linux_ptrace.c src/sys/compat/linux/arch/i386: linux_machdep.c linux_ptrace.c src/sys/compat/linux/arch/mips: linux_machdep.c linux_ptrace.c src/sys/compat/linux/arch/powerpc: linux_machdep.c linux_ptrace.c src/sys/compat/linux/common: linux_exec.c linux_exec_aout.c linux_fadvise64.c linux_fadvise64_64.c linux_file.c linux_llseek.c linux_misc_notalpha.c linux_pipe.c linux_sched.c linux_signal.c linux_socket.c linux_socketcall.c linux_uselib.c src/sys/compat/linux32/common: linux32_misc.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/sys/compat/common/compat_util.c \ src/sys/compat/common/uipc_syscalls_43.c cvs rdiff -u -r1.8 -r1.9 src/sys/compat/common/if_43.c cvs rdiff -u -r1.27 -r1.28 src/sys/compat/common/kern_time_50.c cvs rdiff -u -r1.49 -r1.50 src/sys/compat/linux/arch/alpha/linux_machdep.c cvs rdiff -u -r1.16 -r1.17 src/sys/compat/linux/arch/alpha/linux_pipe.c cvs rdiff -u -r1.31 -r1.32 src/sys/compat/linux/arch/arm/linux_machdep.c cvs rdiff -u -r1.17 -r1.18 src/sys/compat/linux/arch/arm/linux_ptrace.c cvs rdiff -u -r1.158 -r1.159 src/sys/compat/linux/arch/i386/linux_machdep.c cvs rdiff -u -r1.29 -r1.30 src/sys/compat/linux/arch/i386/linux_ptrace.c cvs rdiff -u -r1.42 -r1.43 src/sys/compat/linux/arch/mips/linux_machdep.c cvs rdiff -u -r1.9 -r1.10 src/sys/compat/linux/arch/mips/linux_ptrace.c cvs rdiff -u -r1.47 -r1.48 src/sys/compat/linux/arch/powerpc/linux_machdep.c cvs rdiff -u -r1.27 -r1.28 src/sys/compat/linux/arch/powerpc/linux_ptrace.c cvs rdiff -u -r1.116 -r1.117 src/sys/compat/linux/common/linux_exec.c cvs rdiff -u -r1.66 -r1.67 src/sys/compat/linux/common/linux_exec_aout.c \ src/sys/compat/linux/common/linux_pipe.c \ src/sys/compat/linux/common/linux_sched.c cvs rdiff -u -r1.2 -r1.3 src/sys/compat/linux/common/linux_fadvise64.c \ src/sys/compat/linux/common/linux_fadvise64_64.c cvs rdiff -u -r1.113 -r1.114 src/sys/compat/linux/common/linux_file.c cvs rdiff -u -r1.33 -r1.34 src/sys/compat/linux/common/linux_llseek.c cvs rdiff -u -r1.108 -r1.109 \ src/sys/compat/linux/common/linux_misc_notalpha.c cvs rdiff -u -r1.75 -r1.76 src/sys/compat/linux/common/linux_signal.c cvs rdiff -u -r1.119 -r1.120 src/sys/compat/linux/common/linux_socket.c cvs rdiff -u -r1.44 -r1.45 src/sys/compat/linux/common/linux_socketcall.c cvs rdiff -u -r1.32 -r1.33 src/sys/compat/linux/common/linux_uselib.c cvs rdiff -u -r1.23 -r1.24 src/sys/compat/linux32/common/linux32_misc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: maxv Date: Sun Nov 9 17:50:02 UTC 2014 Modified Files: src/sys/kern: kern_exec.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.409 -r1.410 src/sys/kern/kern_exec.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/mii
Module Name:src Committed By: nonaka Date: Sun Nov 9 17:53:37 UTC 2014 Modified Files: src/sys/dev/mii: miidevs Log Message: Add Realtek RTL8251. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 src/sys/dev/mii/miidevs Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/mii
Module Name:src Committed By: nonaka Date: Sun Nov 9 17:54:02 UTC 2014 Modified Files: src/sys/dev/mii: miidevs_data.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.112 -r1.113 src/sys/dev/mii/miidevs_data.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/mii
Module Name:src Committed By: nonaka Date: Sun Nov 9 17:54:45 UTC 2014 Modified Files: src/sys/dev/mii: rgephy.c Log Message: match Realtek RTL8251. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/dev/mii/rgephy.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/miscfs
Module Name:src Committed By: maxv Date: Sun Nov 9 18:08:07 UTC 2014 Modified Files: src/sys/miscfs/fdesc: fdesc_vfsops.c src/sys/miscfs/genfs: layer_subr.c layer_vfsops.c src/sys/miscfs/nullfs: null_vfsops.c src/sys/miscfs/umapfs: umap_subr.c umap_vfsops.c umap_vnops.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 src/sys/miscfs/fdesc/fdesc_vfsops.c cvs rdiff -u -r1.36 -r1.37 src/sys/miscfs/genfs/layer_subr.c cvs rdiff -u -r1.44 -r1.45 src/sys/miscfs/genfs/layer_vfsops.c cvs rdiff -u -r1.89 -r1.90 src/sys/miscfs/nullfs/null_vfsops.c cvs rdiff -u -r1.28 -r1.29 src/sys/miscfs/umapfs/umap_subr.c cvs rdiff -u -r1.94 -r1.95 src/sys/miscfs/umapfs/umap_vfsops.c cvs rdiff -u -r1.56 -r1.57 src/sys/miscfs/umapfs/umap_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/compat/svr4
Module Name:src Committed By: maxv Date: Sun Nov 9 18:16:55 UTC 2014 Modified Files: src/sys/compat/svr4: svr4_exec_elf32.c svr4_exec_elf64.c svr4_fcntl.c svr4_filio.c svr4_ioctl.c svr4_ipc.c svr4_schedctl.c svr4_signal.c svr4_sockio.c svr4_termios.c svr4_ttold.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/compat/svr4/svr4_exec_elf32.c \ src/sys/compat/svr4/svr4_exec_elf64.c cvs rdiff -u -r1.73 -r1.74 src/sys/compat/svr4/svr4_fcntl.c cvs rdiff -u -r1.23 -r1.24 src/sys/compat/svr4/svr4_filio.c cvs rdiff -u -r1.36 -r1.37 src/sys/compat/svr4/svr4_ioctl.c cvs rdiff -u -r1.26 -r1.27 src/sys/compat/svr4/svr4_ipc.c cvs rdiff -u -r1.7 -r1.8 src/sys/compat/svr4/svr4_schedctl.c cvs rdiff -u -r1.65 -r1.66 src/sys/compat/svr4/svr4_signal.c cvs rdiff -u -r1.35 -r1.36 src/sys/compat/svr4/svr4_sockio.c cvs rdiff -u -r1.27 -r1.28 src/sys/compat/svr4/svr4_termios.c cvs rdiff -u -r1.33 -r1.34 src/sys/compat/svr4/svr4_ttold.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
Module Name:src Committed By: maxv Date: Sun Nov 9 18:23:28 UTC 2014 Modified Files: src/sys/ufs/chfs: chfs_vfsops.c chfs_vnode.c src/sys/ufs/ext2fs: ext2fs_readwrite.c ext2fs_vfsops.c ext2fs_vnops.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/ufs/chfs/chfs_vfsops.c cvs rdiff -u -r1.11 -r1.12 src/sys/ufs/chfs/chfs_vnode.c cvs rdiff -u -r1.65 -r1.66 src/sys/ufs/ext2fs/ext2fs_readwrite.c cvs rdiff -u -r1.185 -r1.186 src/sys/ufs/ext2fs/ext2fs_vfsops.c cvs rdiff -u -r1.114 -r1.115 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/compat/freebsd
Module Name:src Committed By: maxv Date: Sun Nov 9 18:30:39 UTC 2014 Modified Files: src/sys/compat/freebsd: freebsd_exec_elf32.c freebsd_file.c freebsd_ipc.c freebsd_misc.c Log Message: Do not uselessly include . To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/compat/freebsd/freebsd_exec_elf32.c cvs rdiff -u -r1.32 -r1.33 src/sys/compat/freebsd/freebsd_file.c \ src/sys/compat/freebsd/freebsd_misc.c cvs rdiff -u -r1.16 -r1.17 src/sys/compat/freebsd/freebsd_ipc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/sysctl
Module Name:src Committed By: christos Date: Sun Nov 9 18:36:02 UTC 2014 Modified Files: src/sbin/sysctl: sysctl.c Log Message: add handler for /kern/evcnt and print the actual error when failing. To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 src/sbin/sysctl/sysctl.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/mii
Module Name:src Committed By: riz Date: Sun Nov 9 18:40:19 UTC 2014 Modified Files: src/sys/dev/mii: miidevs.h Log Message: Commit forgotten regenerated file. To generate a diff of this commit: cvs rdiff -u -r1.124 -r1.125 src/sys/dev/mii/miidevs.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/dev/ic
Module Name:src Committed By: snj Date: Sun Nov 9 19:06:57 UTC 2014 Added Files: src/sys/dev/ic [netbsd-7]: dwc_gmac.c dwc_gmac_reg.h dwc_gmac_var.h Log Message: Pull up following revision(s) (requested by martin in ticket #189): sys/dev/ic/dwc_gmac.c: revision 1.1-1.24 sys/dev/ic/dwc_gmac_reg.h: revision 1.1-1.12 sys/dev/ic/dwc_gmac_var.h: revision 1.1-1.5 Add support for Synopsis Designware GMAC ethernet core, as found on various Allwiner boards and used by the awge(4) driver. To generate a diff of this commit: cvs rdiff -u -r0 -r1.24.2.2 src/sys/dev/ic/dwc_gmac.c cvs rdiff -u -r0 -r1.12.2.2 src/sys/dev/ic/dwc_gmac_reg.h cvs rdiff -u -r0 -r1.5.2.2 src/sys/dev/ic/dwc_gmac_var.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sbin/atactl
Module Name:src Committed By: snj Date: Sun Nov 9 19:23:04 UTC 2014 Modified Files: src/sbin/atactl [netbsd-7]: atactl.c Log Message: Pull up following revision(s) (requested by mrg in ticket #196): sbin/atactl/atactl.c: revision 1.74 add a whole bunch of S.M.A.R.T. status i found around various sources. now nothing on my new SSD is unknown, except #249. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.73.4.1 src/sbin/atactl/atactl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: snj Date: Sun Nov 9 19:26:47 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: tickets 189 and 196 To generate a diff of this commit: cvs rdiff -u -r1.1.2.81 -r1.1.2.82 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/mii
Module Name:src Committed By: nonaka Date: Sun Nov 9 19:35:43 UTC 2014 Modified Files: src/sys/dev/mii: rgephy.c Log Message: more mention RTL8251. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/mii/rgephy.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: nonaka Date: Sun Nov 9 19:57:54 UTC 2014 Modified Files: src/sys/dev/pci: azalia.c Log Message: Wait for the RIRB DMA engine to come ready. Needed on the audio device integrated in the Vortex86EX SoC. From OpenBSD. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/dev/pci/azalia.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/hdaudio
Module Name:src Committed By: nonaka Date: Sun Nov 9 20:14:01 UTC 2014 Modified Files: src/sys/dev/pci/hdaudio: files.hdaudio Log Message: defflag HDAUDIOVERBOSE. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/dev/pci/hdaudio/files.hdaudio 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: christos Date: Sun Nov 9 20:29:58 UTC 2014 Modified Files: src/sys/dev: rndpseudo.c Log Message: add a couple of event counters. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/dev/rndpseudo.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/conf
Module Name:src Committed By: snj Date: Sun Nov 9 20:59:34 UTC 2014 Modified Files: src/sys/conf [netbsd-7]: files Log Message: Pull up sys/conf/files revision 1.1103, which should have been requested along with ticket 189. Config glue for the Designware GMAC core. Fixes evbarm build. To generate a diff of this commit: cvs rdiff -u -r1.1096.2.1 -r1.1096.2.2 src/sys/conf/files Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: snj Date: Sun Nov 9 21:00:16 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: update ticket 189 To generate a diff of this commit: cvs rdiff -u -r1.1.2.82 -r1.1.2.83 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/sysctl
Module Name:src Committed By: christos Date: Sun Nov 9 22:50:38 UTC 2014 Modified Files: src/sbin/sysctl: sysctl.c Log Message: remove debugging To generate a diff of this commit: cvs rdiff -u -r1.154 -r1.155 src/sbin/sysctl/sysctl.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/sysinst
Module Name:src Committed By: snj Date: Mon Nov 10 01:05:10 UTC 2014 Modified Files: src/usr.sbin/sysinst: msg.mi.en msg.mi.pl Log Message: "Encryption" has an r in it. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/sysinst/msg.mi.en \ src/usr.sbin/sysinst/msg.mi.pl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/arch
Module Name:src Committed By: msaitoh Date: Mon Nov 10 02:33:50 UTC 2014 Modified Files: src/sys/arch/amd64/include [netbsd-6]: Makefile.inc src/sys/arch/i386/include [netbsd-6]: Makefile.inc Log Message: Pull up following revision(s) (requested by joerg in ticket #1172): sys/arch/amd64/include/Makefile.inc: revision 1.5 sys/arch/i386/include/Makefile.inc: revision 1.3 via patch Disable SSE and AVX for kernel modules too. To generate a diff of this commit: cvs rdiff -u -r1.3.24.1 -r1.3.24.2 src/sys/arch/amd64/include/Makefile.inc cvs rdiff -u -r1.1 -r1.1.22.1 src/sys/arch/i386/include/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: msaitoh Date: Mon Nov 10 02:34:54 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Ticket 1172. To generate a diff of this commit: cvs rdiff -u -r1.1.2.155 -r1.1.2.156 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: msaitoh Date: Mon Nov 10 02:38:12 UTC 2014 Modified Files: src/doc [netbsd-6]: CHANGES-6.2 Log Message: Cleanup for ticket 1189. To generate a diff of this commit: cvs rdiff -u -r1.1.2.156 -r1.1.2.157 src/doc/CHANGES-6.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: msaitoh Date: Mon Nov 10 04:25:55 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Add if_wm.c rev. 1.304 and 1.306 in ticket 190. To generate a diff of this commit: cvs rdiff -u -r1.1.2.83 -r1.1.2.84 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/mktemp
Module Name:src Committed By: snj Date: Mon Nov 10 07:33:31 UTC 2014 Modified Files: src/usr.bin/mktemp: mktemp.1 Log Message: minor wording nits and a typo fix To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/usr.bin/mktemp/mktemp.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.