From owner-cvs-sys Thu Nov 20 10:28:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA24274 for cvs-sys-outgoing; Thu, 20 Nov 1997 10:28:29 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA23862; Thu, 20 Nov 1997 10:25:05 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA13480; Thu, 20 Nov 1997 10:24:54 -0800 (PST) Date: Thu, 20 Nov 1997 10:24:54 -0800 (PST) Message-Id: <199711201824.KAA13480@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 db_trace.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1997/11/20 10:24:54 PST Modified files: sys/i386/i386 db_trace.c Log: Fixed wrong limits for the kernel text in db_numargs(). The interval [VM_MIN_KERNEL_ADDRESS, etext] was used instead of [btext, etext). Added a comment about this being completely wrong for LKMs. This only affects interpreting the instructions after the return to attempt decide the number of args. The attempt usually fails anyway. Revision Changes Path 1.27 +7 -3 src/sys/i386/i386/db_trace.c