CVS commit: src/usr.bin/grep

2011-04-17 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Apr 18 03:48:23 UTC 2011

Modified Files:
src/usr.bin/grep: grep.c

Log Message:
Use the more portable getline.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/grep/grep.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/grep

2011-04-17 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Apr 18 03:47:40 UTC 2011

Modified Files:
src/usr.bin/grep: queue.c

Log Message:
Fix memory leaks.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/grep/queue.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/grep

2011-04-17 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Apr 18 03:27:40 UTC 2011

Modified Files:
src/usr.bin/grep: fastgrep.c file.c grep.c queue.c util.c

Log Message:
Include nbtool_config.h for tool builds.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.bin/grep/fastgrep.c src/usr.bin/grep/grep.c
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/grep/file.c
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/grep/queue.c
cvs rdiff -u -r1.9 -r1.10 src/usr.bin/grep/util.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/xen/xen

2011-04-17 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Mon Apr 18 03:04:31 UTC 2011

Modified Files:
src/sys/arch/xen/xen: balloon.c

Log Message:
balloon_xenbus_attach: use KM_SLEEP for allocation.

Note: please do not use KM_NOSLEEP.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/xen/xen/balloon.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2011-04-17 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Mon Apr 18 02:16:55 UTC 2011

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Fix --sysroot usage.


To generate a diff of this commit:
cvs rdiff -u -r1.661 -r1.662 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/sys/dev

2011-04-17 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Mon Apr 18 01:47:28 UTC 2011

Modified Files:
src/sys/dev/ata: ata.c atavar.h
src/sys/dev/scsipi: scsiconf.c

Log Message:
Replace few simple_lock and ltsleep/wakeup uses with mutex(9) and condvar(9).

Note to all: please replace old primitives in your code! Thanks.


To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/ata/ata.c
cvs rdiff -u -r1.80 -r1.81 src/sys/dev/ata/atavar.h
cvs rdiff -u -r1.259 -r1.260 src/sys/dev/scsipi/scsiconf.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

2011-04-17 Thread Jean-Yves Migeon
Module Name:src
Committed By:   jym
Date:   Mon Apr 18 01:36:25 UTC 2011

Modified Files:
src/sys/arch/amd64/conf: XEN3_DOM0 XEN3_DOMU
src/sys/arch/i386/conf: XEN3_DOM0 XEN3_DOMU
src/sys/arch/xen/conf: files.xen
src/sys/arch/xen/xen: balloon.c
src/sys/arch/xen/xenbus: xenbus_probe.c

Log Message:
Large rewrite of the balloon driver. This one:

- turns balloon into a driver that attaches to xenbus(4). This allows to
disable the functionality either at compile time or boot time via
userconf(4). Driver can implement detach or pmf(9) hooks if deemed
necessary.

- keeps Cherry's locking model, but simplify it a bit. There is now
only one target value serialized inside balloon, we do not feedback
alternative value to Xenstore (clients are not expected to see its value
evolve behind their back, and can't do much about that either)

- implements min threshold; this is an admin-settable value that tells
driver to "not balloon below this threshold." This can be used by domain
to keep memory reservations, useful if activity is expected in the near
future.

- in addition to min threshold, the driver implements internally a
safeguard value (uvmexp.freemin + 1MiB), so that admin cannot
inadvertently set min to a very low value forcing domain into heavy
memory pressure and swapping.

- create the sysctl(8) kern.xen.balloon tree. 4 nodes are actually present
(values are in KiB):
   - min: (rw) an admin-settable value that prevents ballooning below this
  mark
   - max: (ro) the maximum size for reservation, as set by xm(1) mem-max.
   - current: (ro) the current reservation for domain.
   - target:  (rw) the targetted reservation for domain.

- fix a few limitations here and there, most notably the max_reservation
hypercall, and KiB vs pages representations at interfaces.

The driver is still turned off by default. Enabling it would need more
approval, especially from bouyer@, cherry@ and cegger@.

FWIW: tested it two days long, from amd64 dom0 (with dom0 ballooning
enabled for xend), and bunch of domUs. Did not notice anything suspicious.

XXX it still has one big limitation: it cannot hotplug memory pages in
uvm(9) if they were not present beforehand. Example: ballooning above
physmem will give more pages to domain but it won't use it to serve
allocations, unless we teach uvm(9) how to handle the extra pages.


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/amd64/conf/XEN3_DOM0
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/amd64/conf/XEN3_DOMU
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/i386/conf/XEN3_DOM0
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/i386/conf/XEN3_DOMU
cvs rdiff -u -r1.115 -r1.116 src/sys/arch/xen/conf/files.xen
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/xen/xen/balloon.c
cvs rdiff -u -r1.31 -r1.32 src/sys/arch/xen/xenbus/xenbus_probe.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:47:24 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Simplify logic: at the bottom of the loop, instead of checking if we
should continue and if not breaking unconditionally, check if we
should break and if not use the bottom of the loop to continue to the
next iteration.


To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:47:04 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Goto considered harmful: now the "goto alldone" can be dropped by
reversing the sense of the associated test and using the big block I
moved a couple versions back (and didn't reindent on purpose) as the
body of the if statement.

There are now no gotos in namei_oneroot, only normal loop logic.


To generate a diff of this commit:
cvs rdiff -u -r1.181 -r1.182 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:46:39 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
The "goto alldone" from a couple patches back (inside the loop) can
now be changed to a loop break and another null test and goto outside
the loop. In neither of the other two cases for exiting the loop can
foundobj be null.


To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:46:14 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Goto considered harmful: "goto terminal" can now just be "break".


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:45:53 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Move the big chunk of code at "terminal:" outside the loop; since it
has an unconditional loop break at the end this can be done safely,
now that the other loop break has been patched out.

Add a spurious set of braces to preserve the indent for the moment.


To generate a diff of this commit:
cvs rdiff -u -r1.178 -r1.179 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:45:29 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Goto still harmful, but use "goto alldone" in place of a loop break
for now anyway.


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/sys/kern/vfs_lookup.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

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:45:07 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c

Log Message:
Goto considered harmful; remove dirloop: in favor of using a loop
continue.

This runs the "are we mounted?" test on every directory instead of
only sometimes; however, it's not exactly an expensive test (null
pointer check) and the prior logic wasn't exactly sensible -- it
checked at the beginning and after following a symlink but, for some
reason, not after crossing a mount point.


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/sys/kern/vfs_lookup.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:43:57 UTC 2011

Modified Files:
src/sys/rump/include/rump: rump_namei.h
src/sys/sys: namei.h

Log Message:
Regen for ISSYMLINK removal.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/rump/include/rump/rump_namei.h
cvs rdiff -u -r1.75 -r1.76 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/sys

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:40:54 UTC 2011

Modified Files:
src/sys/kern: vfs_lookup.c
src/sys/sys: namei.src

Log Message:
ISSYMLINK is now only referenced inside vfs_lookup.c, and not needed
there, so get rid of it.


To generate a diff of this commit:
cvs rdiff -u -r1.175 -r1.176 src/sys/kern/vfs_lookup.c
cvs rdiff -u -r1.22 -r1.23 src/sys/sys/namei.src

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/nfs

2011-04-17 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Mon Apr 18 00:38:33 UTC 2011

Modified Files:
src/sys/nfs: nfs_serv.c

Log Message:
Back in -r1.60 of nfs_serv.c (a long time ago) VOP_MKNOD was changed
so nfsd no longer needed to do a lookup() call immediately afterwards
to retrieve the newly created object.

Since that change there has been no way for ISSYMLINK to be set upon
return from VOP_MKNOD (or before the call to VOP_MKNOD either) so
remove the test for it and associated block of dead code.

(I do not understand how this code was reachable before then either.
The logic in question is only reached if no object by that name
existed, and there's no reasonable way that a successful call to
VOP_MKNOD should ever create a symlink. The code appears to come from
4.4lite; maybe they had locking bugs?)


To generate a diff of this commit:
cvs rdiff -u -r1.158 -r1.159 src/sys/nfs/nfs_serv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2011-04-17 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Mon Apr 18 00:26:12 UTC 2011

Modified Files:
src/sys/arch/sparc/sparc: machdep.c trap.c vm_machdep.c
src/sys/kern: kern_proc.c
src/sys/sys: proc.h

Log Message:
Replace malloc with kmem, and remove M_SUBPROC.


To generate a diff of this commit:
cvs rdiff -u -r1.307 -r1.308 src/sys/arch/sparc/sparc/machdep.c
cvs rdiff -u -r1.186 -r1.187 src/sys/arch/sparc/sparc/trap.c
cvs rdiff -u -r1.105 -r1.106 src/sys/arch/sparc/sparc/vm_machdep.c
cvs rdiff -u -r1.174 -r1.175 src/sys/kern/kern_proc.c
cvs rdiff -u -r1.303 -r1.304 src/sys/sys/proc.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/xen/xen

2011-04-17 Thread Jean-Yves Migeon
Module Name:src
Committed By:   jym
Date:   Sun Apr 17 23:54:05 UTC 2011

Modified Files:
src/sys/arch/xen/xen: hypervisor.c

Log Message:
Remove remnants from the past when Xen 2 was still alive.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/xen/xen/hypervisor.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/db

2011-04-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Apr 17 23:12:38 UTC 2011

Modified Files:
src/lib/libc/db/btree: bt_open.c
src/lib/libc/db/hash: hash_page.c

Log Message:
Correct check for snprintf() overflow via Maksymilian Arciemowicz from FreeBSD.
(the bt one was ok, but set errno and make it the same for consistency).
[to be pulled up]


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/lib/libc/db/btree/bt_open.c
cvs rdiff -u -r1.23 -r1.24 src/lib/libc/db/hash/hash_page.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/mkdep

2011-04-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Apr 17 22:35:22 UTC 2011

Modified Files:
src/usr.bin/mkdep: mkdep.c

Log Message:
Recognize --sysroot but don't document it or do anything about it for now.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/usr.bin/mkdep/mkdep.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

2011-04-17 Thread Mindaugas Rasiukevicius
Module Name:src
Committed By:   rmind
Date:   Sun Apr 17 20:37:43 UTC 2011

Modified Files:
src/sys/kern: uipc_sem.c

Log Message:
ksem_free: remove wrong assert.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/kern/uipc_sem.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/i2c

2011-04-17 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Apr 17 15:15:00 UTC 2011

Modified Files:
src/sys/dev/i2c: motoi2c.c motoi2cvar.h

Log Message:
Suppressing the ACK after the last byte read must not depend on
I2C_OP_STOP_P(), but all read-transfers have to be finished that way.
Otherwise a chip might hang after a read-operation without stop.

Removed sc_start from the softc structure, which is unused.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/motoi2c.c \
src/sys/dev/i2c/motoi2cvar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2011-04-17 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Apr 17 15:03:37 UTC 2011

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Revert previous, breaks builds completely (cd /usr/src/bin/test && make clean &&
make)


To generate a diff of this commit:
cvs rdiff -u -r1.660 -r1.661 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/sys/dev/i2c

2011-04-17 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Apr 17 14:58:27 UTC 2011

Modified Files:
src/sys/dev/i2c: m41st84.c

Log Message:
Do not print "M41ST84 Real-time Clock/NVRAM", but "M41T8x Real-time Clock"
when STRTC_NO_USERRAM is defined. This driver should work for all M41T8x
compatible chips (tested on my DSM-G600 with M41T80).


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/i2c/m41st84.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/sandpoint/sandpoint

2011-04-17 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Apr 17 14:05:59 UTC 2011

Modified Files:
src/sys/arch/sandpoint/sandpoint: satmgr.c

Log Message:
DSM-G600: Turn off all LEDs when shutting down, to indicate the device
can be switched off.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/sandpoint/sandpoint/satmgr.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

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 13:16:59 UTC 2011

Modified Files:
src/usr.sbin/postinstall: postinstall

Log Message:
Invert the chroot/tcpdump/etc test and make it remove the (not needed
anymore) directory.


To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 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/sys/arch/sandpoint/stand/altboot

2011-04-17 Thread Frank Wille
Module Name:src
Committed By:   phx
Date:   Sun Apr 17 13:09:30 UTC 2011

Modified Files:
src/sys/arch/sandpoint/stand/altboot: brdsetup.c

Log Message:
DSM-G600 has a 33.000 MHz oscillator on board.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/sandpoint/stand/altboot/brdsetup.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 13:07:18 UTC 2011

Modified Files:
src/etc: Makefile
src/etc/mtree: NetBSD.dist.base special

Log Message:
Get rid of var/chroot/tcpdump/etc


To generate a diff of this commit:
cvs rdiff -u -r1.389 -r1.390 src/etc/Makefile
cvs rdiff -u -r1.84 -r1.85 src/etc/mtree/NetBSD.dist.base
cvs rdiff -u -r1.136 -r1.137 src/etc/mtree/special

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/base

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 13:04:50 UTC 2011

Modified Files:
src/distrib/sets/lists/base: mi

Log Message:
Get rid of /var/chroot/tcpdump/etc


To generate a diff of this commit:
cvs rdiff -u -r1.932 -r1.933 src/distrib/sets/lists/base/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2011-04-17 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Apr 17 12:54:23 UTC 2011

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Don't use "--sysroot=/" for host builds as "nbhost-mkdep" doesn't
understand that option. This should unbreak tool builds.


To generate a diff of this commit:
cvs rdiff -u -r1.659 -r1.660 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/tools

2011-04-17 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Apr 17 12:52:26 UTC 2011

Modified Files:
src/tools/libctf: Makefile
src/tools/libdwarf: Makefile
src/tools/libelf: Makefile

Log Message:
Set "HOSTLIB" before including "bsd.own.mk" to get the destination
directory checks to work properly.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tools/libctf/Makefile
cvs rdiff -u -r1.2 -r1.3 src/tools/libdwarf/Makefile
cvs rdiff -u -r1.4 -r1.5 src/tools/libelf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/utils/sysinst

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 12:33:42 UTC 2011

Modified Files:
src/distrib/utils/sysinst: menus.mi msg.mi.de msg.mi.en msg.mi.es
msg.mi.fr msg.mi.pl

Log Message:
Add an "exitstring" to the utility menu, so translations can provide
proper strings (like: "back to main menu"). For most translations set
to plain "Exit" (like it used to be) for now - natives, please fix!


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/distrib/utils/sysinst/menus.mi
cvs rdiff -u -r1.56 -r1.57 src/distrib/utils/sysinst/msg.mi.de
cvs rdiff -u -r1.164 -r1.165 src/distrib/utils/sysinst/msg.mi.en
cvs rdiff -u -r1.34 -r1.35 src/distrib/utils/sysinst/msg.mi.es
cvs rdiff -u -r1.114 -r1.115 src/distrib/utils/sysinst/msg.mi.fr
cvs rdiff -u -r1.73 -r1.74 src/distrib/utils/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: src/distrib

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 12:18:20 UTC 2011

Modified Files:
src/distrib/amd64/cdroms: Makefile.cdrom install.sh
src/distrib/i386/cdroms: Makefile.cdrom install.sh
src/distrib/sparc64/cdroms/installcd: Makefile install.sh
src/distrib/sparc64/instfs: dot.profile

Log Message:
On install CDs: make ^C and ^Z work (mostly) as they used to do on
crunched/ramdisk install media again.
Fixes the remaining parts of PR 44738.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/amd64/cdroms/Makefile.cdrom
cvs rdiff -u -r1.1 -r1.2 src/distrib/amd64/cdroms/install.sh
cvs rdiff -u -r1.23 -r1.24 src/distrib/i386/cdroms/Makefile.cdrom
cvs rdiff -u -r1.1 -r1.2 src/distrib/i386/cdroms/install.sh
cvs rdiff -u -r1.10 -r1.11 src/distrib/sparc64/cdroms/installcd/Makefile
cvs rdiff -u -r1.1 -r1.2 src/distrib/sparc64/cdroms/installcd/install.sh
cvs rdiff -u -r1.5 -r1.6 src/distrib/sparc64/instfs/dot.profile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/tcpdump/dist

2011-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun Apr 17 11:45:40 UTC 2011

Modified Files:
src/external/bsd/tcpdump/dist: tcpdump.c

Log Message:
Hint from dsl: make sure to have the /etc/protocols file already open
before doing a chroot() if run as root. Easily done by a setprotoent(1)
call. This is a better (less intrusive) fix for PR bin/44721.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tcpdump/dist/tcpdump.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/comp

2011-04-17 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Apr 17 10:06:49 UTC 2011

Modified Files:
src/distrib/sets/lists/comp: ad.mips64el

Log Message:
catch up with heimdal update.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/distrib/sets/lists/comp/ad.mips64el

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/xen/include

2011-04-17 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Apr 17 09:50:33 UTC 2011

Modified Files:
src/sys/arch/xen/include: xen.h xenpmap.h

Log Message:
apply some _KERNEL_OPT.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/xen/include/xen.h
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/xen/include/xenpmap.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2011-04-17 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Apr 17 09:47:41 UTC 2011

Modified Files:
src/share/mk: bsd.kmodule.mk

Log Message:
prepare for evbppc modules, and allow overriding the ${MACHINE} for
installed modules.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/share/mk/bsd.kmodule.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/lists

2011-04-17 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Apr 17 09:01:58 UTC 2011

Modified Files:
src/distrib/sets/lists/base: ad.mips64eb ad.mips64el md.sparc64
src/distrib/sets/lists/comp: ad.mips64eb md.amd64 md.sparc64 mi shl.mi

Log Message:
various updates to deal with heimdal update.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/distrib/sets/lists/base/ad.mips64eb
cvs rdiff -u -r1.43 -r1.44 src/distrib/sets/lists/base/ad.mips64el
cvs rdiff -u -r1.111 -r1.112 src/distrib/sets/lists/base/md.sparc64
cvs rdiff -u -r1.26 -r1.27 src/distrib/sets/lists/comp/ad.mips64eb
cvs rdiff -u -r1.108 -r1.109 src/distrib/sets/lists/comp/md.amd64
cvs rdiff -u -r1.91 -r1.92 src/distrib/sets/lists/comp/md.sparc64
cvs rdiff -u -r1.1617 -r1.1618 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.166 -r1.167 src/distrib/sets/lists/comp/shl.mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.