cvs commit: src/sys/cpu/i386/include float.h floatingpoint.h ieee.h ieeefp.h math.h perfmon.h profile.h setjmp.h sigframe.h sysarch.h tls.h varargs.h src/sys/ddb db_break.c src/sys/kern init_main.c kern_checkpoint.c kern_exec.c kern_exit.c kern_fp.c ...

YONETANI Tomokazu qhwt+dfly at les.ath.cx
Wed Nov 8 23:08:27 PST 2006


On Tue, Nov 07, 2006 at 09:51:24AM -0800, Matthew Dillon wrote:
> http://www.dragonflybsd.org/cvsweb/src/sys/machine/pc32/include/vmparam.h.diff?r1=1.7&r2=1.8&f=u

You need to adjust libkvm for this change, too.
Index: kvm_proc.c
===================================================================
RCS file: /home/source/dragonfly/cvs/src/lib/libkvm/kvm_proc.c,v
retrieving revision 1.8
diff -u -p -r1.8 kvm_proc.c
--- kvm_proc.c	10 Sep 2006 01:26:26 -0000	1.8
+++ kvm_proc.c	9 Nov 2006 06:41:18 -0000
@@ -399,7 +399,8 @@ kvm_argv(kvm_t *kd, const struct proc *p
 	 * Check that there aren't an unreasonable number of agruments,
 	 * and that the address is in user space.
 	 */
-	if (narg > 512 || addr < VM_MIN_ADDRESS || addr >= VM_MAXUSER_ADDRESS)
+	if (narg > 512 ||
+	    addr < VM_MIN_USER_ADDRESS || addr >= VM_MAX_USER_ADDRESS)
 		return (0);
 
 	/*





More information about the Commits mailing list