CVS commit: src/sys
Module Name:src Committed By: dholland Date: Tue Nov 30 10:30:04 UTC 2010 Modified Files: src/sys/coda: coda_vnops.c src/sys/compat/svr4: svr4_misc.c src/sys/compat/svr4_32: svr4_32_misc.c src/sys/fs/msdosfs: msdosfs_vnops.c src/sys/fs/nilfs: nilfs_vnops.c src/sys/fs/puffs: puffs_vnops.c src/sys/fs/smbfs: smbfs_vnops.c src/sys/fs/sysvbfs: sysvbfs_vnops.c src/sys/fs/tmpfs: tmpfs_subr.c tmpfs_vnops.c src/sys/fs/udf: udf_vnops.c src/sys/fs/union: union_subr.c src/sys/fs/unionfs: unionfs_subr.c src/sys/kern: kern_exec.c vfs_getcwd.c vfs_lookup.c vfs_syscalls.c src/sys/miscfs/genfs: genfs_vnops.c src/sys/nfs: nfs_serv.c nfs_srvsubs.c nfs_vnops.c src/sys/sys: namei.src src/sys/ufs/ext2fs: ext2fs_vnops.c src/sys/ufs/ufs: ufs_extattr.c ufs_vnops.c Log Message: Abolish struct componentname's cn_pnbuf. Use the path buffer in the pathbuf object passed to namei as work space instead. (For now a pnbuf pointer appears in struct nameidata, to support certain unclean things that haven't been fixed yet, but it will be going away in the future.) This removes the need for the SAVENAME and HASBUF namei flags. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/sys/coda/coda_vnops.c cvs rdiff -u -r1.152 -r1.153 src/sys/compat/svr4/svr4_misc.c cvs rdiff -u -r1.71 -r1.72 src/sys/compat/svr4_32/svr4_32_misc.c cvs rdiff -u -r1.68 -r1.69 src/sys/fs/msdosfs/msdosfs_vnops.c cvs rdiff -u -r1.7 -r1.8 src/sys/fs/nilfs/nilfs_vnops.c cvs rdiff -u -r1.147 -r1.148 src/sys/fs/puffs/puffs_vnops.c cvs rdiff -u -r1.75 -r1.76 src/sys/fs/smbfs/smbfs_vnops.c cvs rdiff -u -r1.33 -r1.34 src/sys/fs/sysvbfs/sysvbfs_vnops.c cvs rdiff -u -r1.59 -r1.60 src/sys/fs/tmpfs/tmpfs_subr.c cvs rdiff -u -r1.73 -r1.74 src/sys/fs/tmpfs/tmpfs_vnops.c cvs rdiff -u -r1.59 -r1.60 src/sys/fs/udf/udf_vnops.c cvs rdiff -u -r1.39 -r1.40 src/sys/fs/union/union_subr.c cvs rdiff -u -r1.9 -r1.10 src/sys/fs/unionfs/unionfs_subr.c cvs rdiff -u -r1.301 -r1.302 src/sys/kern/kern_exec.c cvs rdiff -u -r1.46 -r1.47 src/sys/kern/vfs_getcwd.c cvs rdiff -u -r1.123 -r1.124 src/sys/kern/vfs_lookup.c cvs rdiff -u -r1.409 -r1.410 src/sys/kern/vfs_syscalls.c cvs rdiff -u -r1.183 -r1.184 src/sys/miscfs/genfs/genfs_vnops.c cvs rdiff -u -r1.151 -r1.152 src/sys/nfs/nfs_serv.c cvs rdiff -u -r1.7 -r1.8 src/sys/nfs/nfs_srvsubs.c cvs rdiff -u -r1.285 -r1.286 src/sys/nfs/nfs_vnops.c cvs rdiff -u -r1.15 -r1.16 src/sys/sys/namei.src cvs rdiff -u -r1.94 -r1.95 src/sys/ufs/ext2fs/ext2fs_vnops.c cvs rdiff -u -r1.27 -r1.28 src/sys/ufs/ufs/ufs_extattr.c cvs rdiff -u -r1.183 -r1.184 src/sys/ufs/ufs/ufs_vnops.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/man9
Module Name:src Committed By: dholland Date: Tue Nov 30 10:32:47 UTC 2010 Modified Files: src/share/man/man9: pathbuf.9 Log Message: Document pathbuf_assimilate, used by nfsd to move pathnames from mbufs to pathbufs. It is like pathbuf_create but takes responsibility for the path buffer passed in. (Because this is asymmetric, it carries an extra risk of error and therefore shouldn't be used except where it's really needed.) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/share/man/man9/pathbuf.9 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: dholland Date: Tue Nov 30 10:43:06 UTC 2010 Modified Files: src/sys/coda: coda_vnops.c src/sys/compat/svr4: svr4_misc.c src/sys/compat/svr4_32: svr4_32_misc.c src/sys/fs/adosfs: adlookup.c src/sys/fs/efs: efs_vnops.c src/sys/fs/msdosfs: msdosfs_lookup.c msdosfs_vnops.c src/sys/fs/nilfs: nilfs_vnops.c src/sys/fs/puffs: puffs_vnops.c src/sys/fs/smbfs: smbfs_vnops.c src/sys/fs/sysvbfs: sysvbfs_vnops.c src/sys/fs/tmpfs: tmpfs_subr.c tmpfs_vnops.c src/sys/fs/udf: udf_vnops.c src/sys/fs/union: union_subr.c src/sys/fs/unionfs: unionfs_subr.c unionfs_vnops.c src/sys/kern: kern_exec.c vfs_lookup.c src/sys/miscfs/genfs: genfs_vnops.c src/sys/nfs: nfs_vnops.c src/sys/sys: namei.src src/sys/ufs/ext2fs: ext2fs_lookup.c ext2fs_vnops.c src/sys/ufs/ufs: ufs_lookup.c ufs_vnops.c ufs_wapbl.c Log Message: Abolish the SAVENAME and HASBUF flags. There is now always a buffer, so the path in a struct componentname is now always valid during VOP calls. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/sys/coda/coda_vnops.c cvs rdiff -u -r1.153 -r1.154 src/sys/compat/svr4/svr4_misc.c cvs rdiff -u -r1.72 -r1.73 src/sys/compat/svr4_32/svr4_32_misc.c cvs rdiff -u -r1.14 -r1.15 src/sys/fs/adosfs/adlookup.c cvs rdiff -u -r1.22 -r1.23 src/sys/fs/efs/efs_vnops.c cvs rdiff -u -r1.22 -r1.23 src/sys/fs/msdosfs/msdosfs_lookup.c cvs rdiff -u -r1.69 -r1.70 src/sys/fs/msdosfs/msdosfs_vnops.c cvs rdiff -u -r1.8 -r1.9 src/sys/fs/nilfs/nilfs_vnops.c cvs rdiff -u -r1.148 -r1.149 src/sys/fs/puffs/puffs_vnops.c cvs rdiff -u -r1.76 -r1.77 src/sys/fs/smbfs/smbfs_vnops.c cvs rdiff -u -r1.34 -r1.35 src/sys/fs/sysvbfs/sysvbfs_vnops.c cvs rdiff -u -r1.60 -r1.61 src/sys/fs/tmpfs/tmpfs_subr.c cvs rdiff -u -r1.74 -r1.75 src/sys/fs/tmpfs/tmpfs_vnops.c cvs rdiff -u -r1.60 -r1.61 src/sys/fs/udf/udf_vnops.c cvs rdiff -u -r1.40 -r1.41 src/sys/fs/union/union_subr.c cvs rdiff -u -r1.10 -r1.11 src/sys/fs/unionfs/unionfs_subr.c cvs rdiff -u -r1.3 -r1.4 src/sys/fs/unionfs/unionfs_vnops.c cvs rdiff -u -r1.302 -r1.303 src/sys/kern/kern_exec.c cvs rdiff -u -r1.124 -r1.125 src/sys/kern/vfs_lookup.c cvs rdiff -u -r1.184 -r1.185 src/sys/miscfs/genfs/genfs_vnops.c cvs rdiff -u -r1.286 -r1.287 src/sys/nfs/nfs_vnops.c cvs rdiff -u -r1.16 -r1.17 src/sys/sys/namei.src cvs rdiff -u -r1.62 -r1.63 src/sys/ufs/ext2fs/ext2fs_lookup.c cvs rdiff -u -r1.95 -r1.96 src/sys/ufs/ext2fs/ext2fs_vnops.c cvs rdiff -u -r1.105 -r1.106 src/sys/ufs/ufs/ufs_lookup.c cvs rdiff -u -r1.184 -r1.185 src/sys/ufs/ufs/ufs_vnops.c cvs rdiff -u -r1.10 -r1.11 src/sys/ufs/ufs/ufs_wapbl.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: dholland Date: Tue Nov 30 10:44:46 UTC 2010 Modified Files: src/sys/rump/include/rump: rump_namei.h src/sys/sys: namei.h Log Message: Regen for both preceding commits of namei.src together. I suppose I should technically have regen'd separately for each but it didn't seem worthwhile. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/rump/include/rump/rump_namei.h cvs rdiff -u -r1.69 -r1.70 src/sys/sys/namei.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs
Module Name:src Committed By: dholland Date: Tue Nov 30 10:45:27 UTC 2010 Modified Files: src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_replay.c zfs_vnops.c Log Message: SAVENAME and HASBUF namei flags have been abolished; update zfs to match. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_replay.c \ src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_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/rump/include/rump
Module Name:src Committed By: dholland Date: Tue Nov 30 10:46:59 UTC 2010 Modified Files: src/sys/rump/include/rump: rump.h Log Message: RUMPCN_FORCEFREE is no longer needed. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/rump/include/rump/rump.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpvfs
Module Name:src Committed By: dholland Date: Tue Nov 30 10:48:27 UTC 2010 Modified Files: src/sys/rump/librump/rumpvfs: rump_vfs.c rumpfs.c Log Message: SAVENAME and HASBUF namei flags have been removed; update rumpvfs accordingly. To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.61 src/sys/rump/librump/rumpvfs/rump_vfs.c cvs rdiff -u -r1.75 -r1.76 src/sys/rump/librump/rumpvfs/rumpfs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libp2k
Module Name:src Committed By: dholland Date: Tue Nov 30 10:49:23 UTC 2010 Modified Files: src/lib/libp2k: p2k.c Log Message: SAVENAME and HASBUF namei flags have been removed; update accordingly. (pooka@ says not to worry about compat.) To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/lib/libp2k/p2k.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/sys
Module Name:src Committed By: dholland Date: Tue Nov 30 10:50:29 UTC 2010 Modified Files: src/sys/sys: param.h Log Message: Time for 5.99.41 - struct componentbuf and struct nameidata both changed. To generate a diff of this commit: cvs rdiff -u -r1.376 -r1.377 src/sys/sys/param.h 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: hannken Date: Tue Nov 30 10:55:26 UTC 2010 Modified Files: src/sys/miscfs/genfs: genfs_io.c src/sys/uvm: uvm_bio.c Log Message: Always take the object lock before changing vmpage flags. Fixes a deadlock where a thread is waiting on "genput" but the page in question is neither BUSY nor WANTED. No objections from tech-k...@. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/sys/miscfs/genfs/genfs_io.c cvs rdiff -u -r1.70 -r1.71 src/sys/uvm/uvm_bio.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/xorg-server/dist/hw/xfree86/xaa
Module Name:xsrc Committed By: skrll Date: Tue Nov 30 11:09:02 UTC 2010 Modified Files: xsrc/external/mit/xorg-server/dist/hw/xfree86/xaa: xaaPCache.c Log Message: Avoid unaligned accesses. Needed to make my CATS start X without an xorg.conf. Reviewed and tested by macal...@. thanks. To generate a diff of this commit: cvs rdiff -u -r1.1.1.3 -r1.2 \ xsrc/external/mit/xorg-server/dist/hw/xfree86/xaa/xaaPCache.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: phx Date: Tue Nov 30 11:25:25 UTC 2010 Modified Files: src/sys/dev/usb: usbdevs Log Message: Added some Apple trackpad devices for use in usb_quirks.c and macppc/dev/pbms.c To generate a diff of this commit: cvs rdiff -u -r1.568 -r1.569 src/sys/dev/usb/usbdevs Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: phx Date: Tue Nov 30 11:28:44 UTC 2010 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.561 -r1.562 src/sys/dev/usb/usbdevs.h cvs rdiff -u -r1.562 -r1.563 src/sys/dev/usb/usbdevs_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/usb
Module Name:src Committed By: phx Date: Tue Nov 30 11:35:30 UTC 2010 Modified Files: src/sys/dev/usb: ukbd.c usb_quirks.c usb_quirks.h Log Message: Support for Apple notebook keyboards, which have a few quirks. 1. On ISO-keyboard the keycodes for the key left of '1' and right of Shift are swapped. 2. Find the Apple FN key in the report descriptor and do the translations needed, before passing the keycodes to wscons. 3. Those keyboards only have the left Alt key. AltGr is missing. So it is emulated when holding down FN together with Alt. To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 src/sys/dev/usb/ukbd.c cvs rdiff -u -r1.69 -r1.70 src/sys/dev/usb/usb_quirks.c cvs rdiff -u -r1.25 -r1.26 src/sys/dev/usb/usb_quirks.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/wsconsctl
Module Name:src Committed By: phx Date: Tue Nov 30 12:22:07 UTC 2010 Modified Files: src/sbin/wsconsctl: map_parse.y map_scan.l Log Message: Allow standalone commands to be recognized, as in the in-kernel keymaps. Also allow the Cmd token. Examples: keycode 210 = Cmd Cmd_BrightnessUp keycode 211 = Cmd_VolumeToggle To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sbin/wsconsctl/map_parse.y cvs rdiff -u -r1.5 -r1.6 src/sbin/wsconsctl/map_scan.l Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/conf
Module Name:src Committed By: bsh Date: Tue Nov 30 12:42:48 UTC 2010 Modified Files: src/sys/arch/arm/conf: majors.arm32 Log Message: define major device number for UARTs on i.MX SoCs To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/arch/arm/conf/majors.arm32 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/imx
Module Name:src Committed By: bsh Date: Tue Nov 30 13:05:27 UTC 2010 Modified Files: src/sys/arch/arm/imx: files.imx51 imx51_axi.c imx51reg.h imx51var.h imxgpioreg.h imxkppreg.h Added Files: src/sys/arch/arm/imx: imx51_gpio.c imx51_iomux.c imx51_usb.c imxgpio.c imxgpiovar.h imxusb.c imxusbreg.h imxusbvar.h Log Message: Support GPIO, IOMUX, and USB on i.MX51. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/imx/files.imx51 \ src/sys/arch/arm/imx/imx51_axi.c src/sys/arch/arm/imx/imx51reg.h \ src/sys/arch/arm/imx/imx51var.h src/sys/arch/arm/imx/imxgpioreg.h \ src/sys/arch/arm/imx/imxkppreg.h cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/imx/imx51_gpio.c \ src/sys/arch/arm/imx/imx51_iomux.c src/sys/arch/arm/imx/imx51_usb.c \ src/sys/arch/arm/imx/imxgpio.c src/sys/arch/arm/imx/imxgpiovar.h \ src/sys/arch/arm/imx/imxusb.c src/sys/arch/arm/imx/imxusbreg.h \ src/sys/arch/arm/imx/imxusbvar.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/evbarm/conf
Module Name:src Committed By: bsh Date: Tue Nov 30 13:07:29 UTC 2010 Modified Files: src/sys/arch/evbarm/conf: NETWALKER files.netwalker Log Message: Support USB on NetWalker. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/NETWALKER cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/files.netwalker Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpuser
Module Name:src Committed By: pooka Date: Tue Nov 30 14:08:39 UTC 2010 Modified Files: src/lib/librumpuser: Makefile Log Message: add commented-out -D_DIAGNOSTIC To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/librumpuser/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: pooka Date: Tue Nov 30 14:23:24 UTC 2010 Modified Files: src/lib/librumpuser: Makefile src/sys/rump/include/rump: rump.h rumpuser.h src/sys/rump/librump/rumpkern: rump.c Added Files: src/lib/librumpuser: rumpuser_daemonize.c Log Message: Require server to be explicitly initialized with rump_init_server(url). Also, add rump_daemonize_begin() / rump_daemonize_end() to help with the "can't daemon() after pthread_create()" problem. Applications could accomplish the same, but since it's such a common operation, provide a little help. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/librumpuser/Makefile cvs rdiff -u -r0 -r1.1 src/lib/librumpuser/rumpuser_daemonize.c cvs rdiff -u -r1.48 -r1.49 src/sys/rump/include/rump/rump.h cvs rdiff -u -r1.53 -r1.54 src/sys/rump/include/rump/rumpuser.h cvs rdiff -u -r1.206 -r1.207 src/sys/rump/librump/rumpkern/rump.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpclient
Module Name:src Committed By: pooka Date: Tue Nov 30 14:24:40 UTC 2010 Modified Files: src/lib/librumpclient: rumpclient.c Log Message: Change RUMP_SP_CLIENT to RUMP_SERVER. The former was, in addition to being annoying to write, slightly misguiding, since it contains the server url. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/lib/librumpclient/rumpclient.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/dev/md
Module Name:src Committed By: pooka Date: Tue Nov 30 14:29:05 UTC 2010 Modified Files: src/tests/dev/md: h_mdserv.c t_md.sh Log Message: Get rid of the "sleep 1" by using rump_daemonize_begin/end(). Notably, md is a little tricky for this, since the ioctl that configures the service also blocks in the kernel. Therefore, use an additional pthread to probe when the service is fully configured and the server can detach. Also, rawpart love. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/dev/md/h_mdserv.c src/tests/dev/md/t_md.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/dev/md
Module Name:src Committed By: pooka Date: Tue Nov 30 14:31:14 UTC 2010 Modified Files: src/tests/dev/md: h_mdserv.c Log Message: comment tyops To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/dev/md/h_mdserv.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/postinstall
Module Name:src Committed By: njoly Date: Tue Nov 30 14:35:39 UTC 2010 Modified Files: src/usr.sbin/postinstall: postinstall Log Message: Adjust obsolete_libs to handle both the libraries (unchanged) and the corresponding .debug files if exists. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/usr.sbin/postinstall/postinstall Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/ntp/dist/ntpd
Module Name:src Committed By: christos Date: Tue Nov 30 15:00:10 UTC 2010 Modified Files: src/external/bsd/ntp/dist/ntpd: ntp_parser.c ntp_parser.y Log Message: fix typo caused mdnstries not to work. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/ntpd/ntp_parser.c \ src/external/bsd/ntp/dist/ntpd/ntp_parser.y Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/locale
Module Name:src Committed By: tnozaki Date: Tue Nov 30 15:25:05 UTC 2010 Modified Files: src/lib/libc/locale: rune.c Log Message: variable must to be nul terminated before "CODESET=foo". ISO2022 module doesn't understand this and may fail setlocale(3). To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/lib/libc/locale/rune.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/usb
Module Name:src Committed By: bsh Date: Tue Nov 30 15:26:22 UTC 2010 Modified Files: src/sys/dev/usb: ucom.c Log Message: don't clear TS_BUSY in ucomclose(). This fixes kernel crash in ucomstart() with "echo Hello > /dev/ttyU0". To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 src/sys/dev/usb/ucom.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 15:39:27 UTC 2010 Modified Files: src/sys/rump/librump/rumpvfs: rump_vfs.c Log Message: fix broken rototill To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/sys/rump/librump/rumpvfs/rump_vfs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 15:41:35 UTC 2010 Modified Files: src/sys/rump/librump/rumpvfs: rump_vfs.c rumpvfs.ifspec Log Message: remove unnecessary interface To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/sys/rump/librump/rumpvfs/rump_vfs.c cvs rdiff -u -r1.6 -r1.7 src/sys/rump/librump/rumpvfs/rumpvfs.ifspec Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libp2k
Module Name:src Committed By: pooka Date: Tue Nov 30 15:42:12 UTC 2010 Modified Files: src/lib/libp2k: p2k.c Log Message: Remove dead code from previous revision. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/lib/libp2k/p2k.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/mac68k/obio
Module Name:src Committed By: hauke Date: Tue Nov 30 16:05:56 UTC 2010 Modified Files: src/sys/arch/mac68k/obio: iwm.s Log Message: Fix an embarassing tyop. gcc should run aspell over the comments... To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mac68k/obio/iwm.s 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: Tue Nov 30 16:16:33 UTC 2010 Modified Files: src/distrib/sets/lists/tests: mi src/tests/rump/rumpvfs: Makefile Added Files: src/tests/rump/rumpvfs: t_p2kifs.c Log Message: test makecn/freecn To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.1 -r1.2 src/tests/rump/rumpvfs/Makefile cvs rdiff -u -r0 -r1.1 src/tests/rump/rumpvfs/t_p2kifs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump
Module Name:src Committed By: pooka Date: Tue Nov 30 16:27:31 UTC 2010 Modified Files: src/sys/rump/include/rump: rumpvfs_if_pub.h src/sys/rump/librump/rumpvfs: rumpvfs_if_priv.h rumpvfs_if_wrappers.c Log Message: regen: checksavecn is gone To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/rump/include/rump/rumpvfs_if_pub.h cvs rdiff -u -r1.8 -r1.9 src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h \ src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.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: Tue Nov 30 17:32:29 UTC 2010 Modified Files: src/distrib/sets/lists/comp: mi src/lib/librumpvfs: Makefile Added Files: src/lib/librumpvfs: rump_etfs.3 Log Message: document rump_etfs To generate a diff of this commit: cvs rdiff -u -r1.1526 -r1.1527 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.2 -r1.3 src/lib/librumpvfs/Makefile cvs rdiff -u -r0 -r1.1 src/lib/librumpvfs/rump_etfs.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 18:08:46 UTC 2010 Modified Files: src/lib/librumpvfs: rump_etfs.3 Log Message: ahem, use public interface names in the doc To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/lib/librumpvfs/rump_etfs.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/rump/rumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 18:14:38 UTC 2010 Modified Files: src/tests/rump/rumpvfs: t_etfs.c Log Message: check etfs key rules To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/tests/rump/rumpvfs/t_etfs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/rump/rumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 18:19:47 UTC 2010 Modified Files: src/tests/rump/rumpvfs: t_etfs.c Log Message: one more test To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/tests/rump/rumpvfs/t_etfs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 18:20:41 UTC 2010 Modified Files: src/sys/rump/librump/rumpvfs: rumpfs.c Log Message: simplify To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/sys/rump/librump/rumpvfs/rumpfs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/csu/arch/x86_64
Module Name:src Committed By: joerg Date: Tue Nov 30 18:37:59 UTC 2010 Modified Files: src/lib/csu/arch/x86_64: crtbegin.S Log Message: Fix stack alignment for non-constructor/destructor calls. AMD64 stack is 16 Byte aligned at the start of the function, so always push rbx. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/lib/csu/arch/x86_64/crtbegin.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib
Module Name:src Committed By: joerg Date: Tue Nov 30 18:38:54 UTC 2010 Modified Files: src/tests/lib/csu: Makefile h_initfini_common.cxx src/tests/lib/csu/dso: Makefile h_initfini3_dso.cxx src/tests/lib/libpthread: Makefile t_join.c Added Files: src/tests/lib/csu: Makefile.check_stack src/tests/lib/csu/dso: h_initfini_align.S h_initfini_align.S Log Message: Test alignment of constructor / destructor calls as well as the stack of new threads. Currently implement for i386 and AMD64. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/lib/csu/Makefile cvs rdiff -u -r0 -r1.1 src/tests/lib/csu/Makefile.check_stack cvs rdiff -u -r1.1 -r1.2 src/tests/lib/csu/h_initfini_common.cxx cvs rdiff -u -r1.3 -r1.4 src/tests/lib/csu/dso/Makefile cvs rdiff -u -r1.1 -r1.2 src/tests/lib/csu/dso/h_initfini3_dso.cxx cvs rdiff -u -r0 -r1.1 src/tests/lib/csu/dso/h_initfini_align.S cvs rdiff -u -r0 -r1.2 src/tests/lib/csu/dso/h_initfini_align.S cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libpthread/Makefile cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libpthread/t_join.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/x86/acpi
Module Name:src Committed By: jruoho Date: Tue Nov 30 18:44:07 UTC 2010 Modified Files: src/sys/arch/x86/acpi: acpi_cpu_md.c Log Message: Fix boolean brain freeze. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/arch/x86/acpi/acpi_cpu_md.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/dev/md
Module Name:src Committed By: pooka Date: Tue Nov 30 19:03:44 UTC 2010 Modified Files: src/tests/dev/md: Makefile Log Message: don't include librump twice To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/dev/md/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: jruoho Date: Tue Nov 30 19:07:15 UTC 2010 Modified Files: src/share/misc: acronyms Log Message: Add numerous entries from Roland Kammerer. Couple of good ones, FTFY, AMOL, AINEC, GLHF, IAWTC, OOI, OWTTE, ... To generate a diff of this commit: cvs rdiff -u -r1.193 -r1.194 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpvfs
Module Name:src Committed By: pooka Date: Tue Nov 30 19:50:26 UTC 2010 Modified Files: src/lib/librumpvfs: rump_etfs.3 Log Message: Add missing .El Maybe next we can have typoed comments break builds? To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/lib/librumpvfs/rump_etfs.3 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: jruoho Date: Tue Nov 30 20:19:31 UTC 2010 Modified Files: src/distrib/sets/lists/man: mi src/share/man/man7: Makefile Added Files: src/share/man/man7: orders.7 Log Message: Add orders(7) as a miscellaneous manual page. To generate a diff of this commit: cvs rdiff -u -r1.1255 -r1.1256 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.22 -r1.23 src/share/man/man7/Makefile cvs rdiff -u -r0 -r1.1 src/share/man/man7/orders.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpuser
Module Name:src Committed By: pooka Date: Tue Nov 30 20:33:44 UTC 2010 Modified Files: src/lib/librumpuser: sp_common.c Log Message: Hands off of stuff we need to keep hands off of. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/lib/librumpuser/sp_common.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: jruoho Date: Tue Nov 30 20:50:29 UTC 2010 Modified Files: src/distrib/sets/lists/man: mi src/share/man/man7: Makefile Added Files: src/share/man/man7: c.7 Log Message: Add c(7). Pillaged from FreeBSD. Written by Gabor Kovesdan. To generate a diff of this commit: cvs rdiff -u -r1.1256 -r1.1257 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.23 -r1.24 src/share/man/man7/Makefile cvs rdiff -u -r0 -r1.1 src/share/man/man7/c.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: jruoho Date: Tue Nov 30 20:59:10 UTC 2010 Modified Files: src/distrib/sets/lists/man: mi src/share/man/man7: Makefile Added Files: src/share/man/man7: glob.7 Log Message: Add glob(7). >From OpenBSD. Written by Todd C. Miller. To generate a diff of this commit: cvs rdiff -u -r1.1257 -r1.1258 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.24 -r1.25 src/share/man/man7/Makefile cvs rdiff -u -r0 -r1.1 src/share/man/man7/glob.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: jruoho Date: Tue Nov 30 21:00:00 UTC 2010 Modified Files: src/share/man/man7: c.7 Log Message: Fix botched CVS identifier. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/share/man/man7/c.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: jruoho Date: Tue Nov 30 21:03:07 UTC 2010 Modified Files: src/lib/libc/gen: fnmatch.3 glob.3 Log Message: Xref glob(7). To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/lib/libc/gen/fnmatch.3 cvs rdiff -u -r1.38 -r1.39 src/lib/libc/gen/glob.3 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: jruoho Date: Tue Nov 30 21:22:39 UTC 2010 Modified Files: src/share/man/man7: intro.7 Log Message: Update. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/share/man/man7/intro.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpvfs
Module Name:src Committed By: wiz Date: Tue Nov 30 22:00:01 UTC 2010 Modified Files: src/lib/librumpvfs: rump_etfs.3 Log Message: Add some consistency dots though they make not much typographic sense; however, just as much as in the other places in the enumeration. Use Pa for a path. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/librumpvfs/rump_etfs.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/rump/rumpkern
Module Name:src Committed By: pooka Date: Tue Nov 30 22:09:15 UTC 2010 Modified Files: src/tests/rump/rumpkern: Makefile Added Files: src/tests/rump/rumpkern: t_sp.sh src/tests/rump/rumpkern/h_client: Makefile h_reboot.c h_simplecli.c h_stresscli.c src/tests/rump/rumpkern/h_server: Makefile h_simpleserver.c Log Message: Add a simple and stress test cases for the rump remote syscall code. Fun fact: since the server daemonizes into its own process group, it's not in atf's pgrp. Use rump_sys_reboot() in atf cleanup to kill the server after the test. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/tests/rump/rumpkern/Makefile cvs rdiff -u -r0 -r1.1 src/tests/rump/rumpkern/t_sp.sh cvs rdiff -u -r0 -r1.1 src/tests/rump/rumpkern/h_client/Makefile \ src/tests/rump/rumpkern/h_client/h_reboot.c \ src/tests/rump/rumpkern/h_client/h_simplecli.c \ src/tests/rump/rumpkern/h_client/h_stresscli.c cvs rdiff -u -r0 -r1.1 src/tests/rump/rumpkern/h_server/Makefile \ src/tests/rump/rumpkern/h_server/h_simpleserver.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: Tue Nov 30 22:14:03 UTC 2010 Modified Files: src/distrib/sets/lists/tests: mi src/etc/mtree: NetBSD.dist.base Log Message: build system gobbeldygook for tests To generate a diff of this commit: cvs rdiff -u -r1.162 -r1.163 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.62 -r1.63 src/etc/mtree/NetBSD.dist.base Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/dev/md
Module Name:src Committed By: pooka Date: Tue Nov 30 22:15:02 UTC 2010 Modified Files: src/tests/dev/md: t_md.sh Log Message: cleanup server after use (XXX: need better way to reboot it) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/dev/md/t_md.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpclient
Module Name:src Committed By: pooka Date: Tue Nov 30 22:30:44 UTC 2010 Modified Files: src/lib/librumpclient: rumpclient.c Log Message: lintsquelch To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/lib/librumpclient/rumpclient.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/librumpuser
Module Name:src Committed By: pooka Date: Tue Nov 30 22:32:01 UTC 2010 Modified Files: src/lib/librumpuser: rumpuser_sp.c Log Message: lint care To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/lib/librumpuser/rumpuser_sp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests
Module Name:src Committed By: riz Date: Tue Nov 30 23:17:27 UTC 2010 Modified Files: src/tests: Makefile Added Files: src/tests/sbin: Makefile Makefile.inc src/tests/sbin/resize_ffs: Makefile t_resize_ffs.sh Log Message: Add some basic tests of resize_ffs(8). The 'grow' test does nothing more than create an empty file system, grow it, and makes sure fsck finds the result clean. The 'shrink' test does likewise for shrinking, but is an expected failure at the moment due to PR bin/44177. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/tests/Makefile cvs rdiff -u -r0 -r1.1 src/tests/sbin/Makefile src/tests/sbin/Makefile.inc cvs rdiff -u -r0 -r1.1 src/tests/sbin/resize_ffs/Makefile \ src/tests/sbin/resize_ffs/t_resize_ffs.sh 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: riz Date: Tue Nov 30 23:18:25 UTC 2010 Modified Files: src/distrib/sets/lists/tests: mi src/etc/mtree: NetBSD.dist.base Log Message: Add sets/mtree goop for new test program and accompanying dirs. To generate a diff of this commit: cvs rdiff -u -r1.163 -r1.164 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.63 -r1.64 src/etc/mtree/NetBSD.dist.base Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/notes/common
Module Name:src Committed By: mef Date: Wed Dec 1 01:57:10 UTC 2010 Modified Files: src/distrib/notes/common: main Log Message: Add Makoto Fujiwara mef@, thanks To generate a diff of this commit: cvs rdiff -u -r1.468 -r1.469 src/distrib/notes/common/main Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/misc
Module Name:src Committed By: jruoho Date: Wed Dec 1 05:18:10 UTC 2010 Modified Files: src/share/misc: acronyms Log Message: OWITE -> OWTTE, as in the original patch. To generate a diff of this commit: cvs rdiff -u -r1.194 -r1.195 src/share/misc/acronyms Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/cats/include
Module Name:src Committed By: skrll Date: Wed Dec 1 06:47:17 UTC 2010 Modified Files: src/sys/arch/cats/include: param.h Log Message: Define PCI_MAGIC_IO_RANGE, so that Xorg drivers can mmap PCI IO space. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/cats/include/param.h 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: Wed Dec 1 07:03:21 UTC 2010 Modified Files: src/distrib/sets/lists/tests: mi src/etc/mtree: NetBSD.dist.base Log Message: adjust previous a bit to attempt to deal with MKMONKEY To generate a diff of this commit: cvs rdiff -u -r1.164 -r1.165 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.64 -r1.65 src/etc/mtree/NetBSD.dist.base Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/stdio
Module Name:src Committed By: pooka Date: Wed Dec 1 07:12:03 UTC 2010 Modified Files: src/tests/lib/libc/stdio: t_format.c Log Message: comment why vax is left out of all the fun To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/stdio/t_format.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.