From 9e78300eda1892242df3e14f357e6d98468fca7a Mon Sep 17 00:00:00 2001 From: chs Date: Mon, 28 May 2001 22:47:05 +0000 Subject: [PATCH] remove check for too-small MSGBUFOFF now that the reason for it is gone. --- sys/arch/sun3/sun3x/machdep.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/sys/arch/sun3/sun3x/machdep.c b/sys/arch/sun3/sun3x/machdep.c index 66286c1f82b8..e3265cd68a98 100644 --- a/sys/arch/sun3/sun3x/machdep.c +++ b/sys/arch/sun3/sun3x/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.67 2001/05/28 21:54:27 chs Exp $ */ +/* $NetBSD: machdep.c,v 1.68 2001/05/28 22:47:05 chs Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -573,13 +573,6 @@ cpu_dumpconf() int maj; int (*getsize)__P((dev_t)); - /* Validate space in page zero for the kcore header. */ - if (MSGBUFOFF < (sizeof(kcore_seg_t) + sizeof(cpu_kcore_hdr_t))) { - printf("%d %d\n", -MSGBUFOFF, (sizeof(kcore_seg_t) + sizeof(cpu_kcore_hdr_t))); - panic("cpu_dumpconf: MSGBUFOFF too small"); - } - if (dumpdev == NODEV) return;