summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
1998-03-01GCC 2.8 requires explicit typesNiklas Hallqvist
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01GCC 2.8 type safetyNiklas Hallqvist
1998-03-01GCC 2.8 requires explicit typesNiklas Hallqvist
1998-03-01GCC 2.8 type safetyNiklas Hallqvist
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01make int explicit for GCC 2.8 -WallNiklas Hallqvist
1998-03-01make int explicitNiklas Hallqvist
1998-03-01unused decl removedNiklas Hallqvist
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01GCC 2.8 -Wall + a little KNFNiklas Hallqvist
1998-03-01An actual bug the "stupid" missing braces around else clauseNiklas Hallqvist
warning in GCC 2.8, found.
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01Make kernel compilable. -mojMats O Jansson
1998-03-01Put back former pmap_steal_memory in non MNN case, at least i386 stillNiklas Hallqvist
needs it.
1998-03-01Conditionalize declNiklas Hallqvist
1998-03-01Fixes for gcc 2.8johns
Added explicit type of integer to register variable i..
1998-03-01Fixes required for gcc 2.8, trapsignal() takes a union sigval as itsjohns
fifth parameter, gcc 2.8 will not allow us to pass in an integer anymore.
1998-03-01Changed declaration of maddr in the dumpsys() so it is an unsigned int,johns
old code semantics let it default to an int. AFter careful inspection of the surrounding code, it would appear that maddr has to be unsigned, and that the original code was a bug. Also added correct return type for sunos_exec_aout_makecmds() declaration. Both fixes are required for building on gcc 2.8...
1998-03-01trapsignal() requires parameter five to be of type "union sigval".johns
gcc 2.8 will not allow us to pass in a caddr_t, changes based on Niklas' stuff in i386 trap.c
1998-03-01Fixed declaration of iorqno in xd_piodriver(),johns
should have been int, used to be a char. Prototype for xd_piodriver() also said int.. Fix required for gcc 2.8 ...
1998-03-01enable wdc1--cdroms often live there.Todd C. Miller
1998-03-01GCC 2.8 -WallNiklas Hallqvist
1998-03-01Merge of MACHINE_NEW_CONTIG (aka MNN) code from Chuck Cranor,Niklas Hallqvist
<chuck@openbsd.org>. This code is as of yet disabled on all platforms, actually not yet supported on more than mvme68k, although other platforms are expected soon, as code is already available. This code makes handling of multiple physical memory regions consistent over all platforms, as well as keeping the performance of maintaining a single continuous memory chunk. It is also a requirement for the upcoming UVM replacement VM system. What I did in this merge: just declared the pmap_map function in a MD include file per port that needs it. It's not an exported pmap interface, says Chuck. It ended up in differnt include files on differnet ports, as I tried to follow the current policy on a per-arch basis.
1998-02-28krpc_call() should use random reserved portsTheo de Raadt
1998-02-28Another shot at disallowing TCP connections to 255.255.255.255,Angelos D. Keromytis
0.0.0.0 and any local broadcast addresses. Tested.
1998-02-28Add IDETodd C. Miller
1998-02-26Fix boot flags not working. The latest gas patches, which caught someTobias Weingartner
problems in our locore (which were then fixed), caused this latest bug to appear. Basically the clearing of the BSS was being done after the boothowto integer was already filled in. The new bootblocks already clear the BSS, so the clearing of the BSS could well be removed from locore. However, for backwards compatibility we might still need it in there for a while. (I believe the 2.1 boot- blocks did not clear the BSS).
1998-02-26Oops. Pull ddb/db_var.h in. Should db_console be in db_extern.h, maybe?gene
1998-02-26Backout of cpu init changes, breaks on sun4m currently..johns
1998-02-26Backout of Jason's cpu init changes, causes an immediate panic on sun4mjohns
machines..
1998-02-26syncTheo de Raadt
1998-02-26doc CTL0001Theo de Raadt
1998-02-26updated to reflect cpu initializationJason Wright
1998-02-26Change order of cpu initialization to force the correct dmesg output.Jason Wright
1998-02-26150ms delayTheo de Raadt
1998-02-26Only break to Debugger() when the panic switch is hit if the syctl'ablegene
db_console is set.
1998-02-26clean dmesgTheo de Raadt
1998-02-26remember model number; skip PNP cards; etc etc etcTheo de Raadt
1998-02-26nicer messageTheo de Raadt
1998-02-25pretty print for pci cards tooTheo de Raadt
1998-02-25do not print model number twiceTheo de Raadt
1998-02-25patch could not have been tested. panics machine on bootTheo de Raadt
1998-02-25check for zerodev special case before kicking out all VCHR casesTheo de Raadt
1998-02-25Add command to print out extents. This helps in debugging PnP stuff,Tobias Weingartner
and "it's just plain cool".
1998-02-2532bit carenessMichael Shalayeff
1998-02-25please indent as the file is currently indentedTheo de Raadt
1998-02-25Pay attention.Angelos D. Keromytis
1998-02-25Disallow TCP connects to 255.255.255.255 or local broadcast addresses.Angelos D. Keromytis