svn commit: r237924 - head/sys/i386/i386
Christian Brueffer
brueffer at FreeBSD.org
Sun Jul 1 12:59:01 UTC 2012
Author: brueffer
Date: Sun Jul 1 12:59:00 2012
New Revision: 237924
URL: http://svn.freebsd.org/changeset/base/237924
Log:
Replace an unreachable panic() in vm86_getptr (been there for 13 years) with
a KASSERT() behind the functions's only consumer.
Suggested by: kib
Reviewed by: kib
CID: 4494
Found with: Coverity Prevent(tm)
MFC after: 2 weeks
Modified:
head/sys/i386/i386/machdep.c
head/sys/i386/i386/vm86.c
Modified: head/sys/i386/i386/machdep.c
==============================================================================
--- head/sys/i386/i386/machdep.c Sun Jul 1 12:48:56 2012 (r237923)
+++ head/sys/i386/i386/machdep.c Sun Jul 1 12:59:00 2012 (r237924)
@@ -2176,7 +2176,7 @@ basemem_setup(void)
static void
getmemsize(int first)
{
- int has_smap, off, physmap_idx, pa_indx, da_indx;
+ int has_smap, off, physmap_idx, pa_indx, da_indx, res;
u_long physmem_tunable, memtest;
vm_paddr_t physmap[PHYSMAP_SIZE];
pt_entry_t *pte;
@@ -2267,7 +2267,8 @@ getmemsize(int first)
pmap_kenter(KERNBASE + (1 << PAGE_SHIFT), 1 << PAGE_SHIFT);
vmc.npages = 0;
smap = (void *)vm86_addpage(&vmc, 1, KERNBASE + (1 << PAGE_SHIFT));
- vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
+ res = vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
+ KASSERT(res != 0, ("vm86_getptr() failed: address not found"));
vmf.vmf_ebx = 0;
do {
Modified: head/sys/i386/i386/vm86.c
==============================================================================
--- head/sys/i386/i386/vm86.c Sun Jul 1 12:48:56 2012 (r237923)
+++ head/sys/i386/i386/vm86.c Sun Jul 1 12:59:00 2012 (r237924)
@@ -650,7 +650,6 @@ vm86_getptr(vmc, kva, sel, off)
return (1);
}
return (0);
- panic("vm86_getptr: address not found");
}
int
More information about the svn-src-head
mailing list