PERFORCE change 41102 for review

Juli Mallett jmallett at FreeBSD.org
Sun Nov 2 01:16:37 PST 2003


http://perforce.freebsd.org/chv.cgi?CH=41102

Change 41102 by jmallett at jmallett_dalek on 2003/11/02 01:16:21

	remove some extraordinarily useless boot clutter.

Affected files ...

.. //depot/projects/mips/sys/mips/mips/machdep.c#35 edit
.. //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#21 edit

Differences ...

==== //depot/projects/mips/sys/mips/mips/machdep.c#35 (text+ko) ====

@@ -576,8 +576,8 @@
 	if (len > max)
 		panic("Exception code too big for vector %lx\n", addr);
 
-	printf("Installing exception code %p:%p at %lx, %zu bytes (%zu free)\n",
-	       begin, end, addr, len, max - len);
+	if (len == max)
+		printf("Exception vector at %lx has no more free space\n", addr);
 	memcpy((void *)addr, begin, len);
 }
 

==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#21 (text+ko) ====

@@ -151,23 +151,17 @@
 		case ARCBIOS_MEM_FreeContiguous:
 		case ARCBIOS_MEM_FreeMemory:
 			availmem += btoc(size);
-			printf("Physical available block %d:\n", j);
-			printf("Available memory range %0x-%0x\n",
-			       first, last);
 			phys_avail[j + 0] = first;
 			phys_avail[j + 1] = last;
 			j += 2;
 			break;
 		default:
-			printf("Memory range %0x-%0x type %d\n",
-			       first, last, mem->Type);
 			break;
 		}
 		physsz += size;
 	}
 	if (kend == 0)
 		panic("End of kernel should not be 0");
-	printf("kernel memory ends at %lx\n", kend);
 
 	init_param2(ctob(availmem));
 	mips_init();


More information about the p4-projects mailing list