summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed unused #includes.bde1997-07-2017-85/+17
|
* Fixed data+bss limit (use the current rlimit instead of MAXDSIZ).bde1997-07-201-7/+3
|
* Removed unused #includes.bde1997-07-2097-510/+72
|
* Removed unused #includes.kato1997-07-201-11/+0
|
* Removed yet another vestige of devconf.bde1997-07-201-3/+1
|
* Finished (?) converting md_regs to a `struct trapframe *'. Some bogus castsbde1997-07-201-2/+2
| | | | are now unnecessary.
* Uniformized idempotency ifdef.bde1997-07-201-4/+4
|
* Fixed missing indent protection in copyright.bde1997-07-201-5/+5
| | | | Uniformized idempotency ifdef.
* Fixed the place of the `}' in comparam().kato1997-07-202-8/+8
|
* Removed unused #includes.bde1997-07-202-8/+1
|
* Synchronize with sys/i386/i386/microtime.s revision 1.25.kato1997-07-201-7/+19
|
* Synchronize with sys/i386/isa/clock.c revision up to 1.92.kato1997-07-203-72/+159
|
* #include <machine/stdarg.h> in the one place in pcvt that it is usedbde1997-07-202-6/+6
| | | | instead of centrally.
* Removed a stray semicolon.bde1997-07-201-1/+1
|
* Removed unused #includes.bde1997-07-201-3/+2
| | | | Updated an #include to 4.4Lite style (missed one).
* Removed unused #includes and a stale forward declaration.bde1997-07-203-18/+3
|
* Oops, I removed one too many #include. <machine/frame.h> was previouslybde1997-07-201-1/+2
| | | | | | included twice as a side effect of including unrelated headers, but I removed the #include of one of the headers and will soon fix the nested #include in the other.
* Hide definitions that depend on the APIC_IO option from LKMs so that LKMsbde1997-07-201-3/+7
| | | | | | | break properly if they use these definitions. Use '#ifdef notyet' instead of '#if 0' to hide temporarily misplaced declarations.
* Fixed pedantic ANSI C errors:bde1997-07-201-11/+2
| | | | | - don't put a comma after the last element in enum declarations. - don't declare static objects as extern.
* Moved some definitions of initialized data nearer to the start ofbde1997-07-201-157/+157
| | | | | | | | | | | | | | | | | | | | | the file so that this compiles without forward declarations of that data. (It is impossible to forward-declare static data in Gnu C. Declaring it as static is correct, but causes bogus warnings from gcc -Wredundant-decls. Declaring it as extern works, but causes correct warnings from gcc -pedantic and is undefined in ANSI C. We usually declare it as extern. Here it was once really extern, but botched staticization left it as static here and apparently- extern in a header file.) ---------------------------------------------------------------------- another system, such as NetBSD, CVS: then name the system in this line, otherwise delete it. CVS: Reviewed by: CVS: Before committing changes please have someone check your work and CVS: include their name here. If the change is trivial and you have not else; i.e., CVS: they sent us a patch or a new module, then include their name/email CVS: address here. If this is your work then delete this line. CVS: ---------------------------------------------------------------------- ----------------------------------------------------------------------
* Removed unused #includes.bde1997-07-2014-113/+9
|
* Fixed bitrot in fpu LKMs.bde1997-07-206-20/+19
|
* Removed unused #includes.bde1997-07-2041-205/+41
|
* Removed unused #includes.bde1997-07-207-76/+7
|
* Cleaned up revisions 1.22 and 1.23.bde1997-07-201-21/+24
| | | | | Fixed minor bugs in revisions 1.12 and 1.23 (variables assigned to in signal handlers weren't declared as volatile).
* Disabled option SMP_TIMER_NC. It now conflicts with a default "option".bde1997-07-203-12/+21
| | | | | | | Moved description of sio 16650A flag to the sio section and rewrote the description. It was in the generic console flags section. Added undocumented options CPU_UPGRADE_HW_CACHE and WLDEBUG.
* Remove sonewconn() macro kludge, introduced in 4.3-Reno to catch argumentfenner1997-07-193-15/+6
| | | | | | mismatches. Prototypes do a much better job these days. Noticed by: bde
* Remove crufty LBL ifdef that only applies to Suns.fenner1997-07-191-5/+1
| | | | Submitted by: Craig Leres <leres@ee.lbl.gov>
* Remove SGML related directories.jfieber1997-07-191-19/+1
|
* Remove SGML tools from -current.jfieber1997-07-19141-47258/+3
|
* sleep() after sending 'nologin' file to ensure output is drained beforedavidn1997-07-191-1/+2
| | | | disconnect.
* Added code to support #define APIC_PIN0_TIMER.fsmp1997-07-198-21/+61
| | | | | This code ALWAYS runs the 8254 timer thru the 8259 ICU. It depricates the usage of "options SMP_TIMER_NC" in the config file.
* Added #code to support define APIC_PIN0_TIMER.fsmp1997-07-196-44/+145
| | | | | This code ALWAYS runs the 8254 timer thru the 8259 ICU. It depricates the usage of "options SMP_TIMER_NC" in the config file.
* Added #define APIC_PIN0_TIMER.fsmp1997-07-191-1/+9
| | | | | | This define enables the code to ALWAYS run the 8254 timer thru the 8259 ICU. It is ON by default. It depricates the usage of "options SMP_TIMER_NC" in the config file.
* SMP or APIC_IO:fsmp1997-07-198-105/+206
| | | | | | - Increased NIDT to 256. - Moved IPI vectors up above the linux compat vector. - Removed runtime setup of RTC vector.
* Increased NIDT to 256 for case of SMP or APIC_IO.fsmp1997-07-192-2/+10
|
* Added "options DDB", given the experimental nature of SMP...fsmp1997-07-181-1/+5
|
* Split TEST_CPUSTOP code into CPUSTOP_ON_DDBBREAK and mainline code.fsmp1997-07-1820-408/+192
|
* Rshd print to much information if a user does not exists.wosch1997-07-182-8/+7
|
* Assign correct chip set register dump functions to Triton II device IDs.se1997-07-181-2/+3
| | | | | PR: i386/4092 Submitted by: Steve Bauer <sbauer@rock.sdsmt.edu>
* Fix "unexpected phase change" interrupt handler: Do not access these1997-07-181-7/+10
| | | | | | | dstat register twice, pass the value read the first time to the fixup code instead. Submitted by: Gerard Roudier <groudier@club-internet.fr>
* Add code to make sure that we don't overflow the buffer that we copyimp1997-07-181-1/+4
| | | | | | | | | the hostname into. In theory the bind library should do this, but in practice the limites between system defines and bind defines make an attack using this vector possible. These patches have been in use on my systems for three months now, so I am fairly confident about them. I plan on commiting this to 2.2 and 2.1 in the near future, as well as many other patches of this nature.
* Fix a problem where remote files could be removed by exploiting raceimp1997-07-181-0/+2
| | | | | conditions similar to those reported in CERT's CA-91:10a advisory. Obtained from: Hiroshi NAKANO <nakano@rins.ryukoku.ac.jp> by way of CERT.
* Calculate and print out the standard deviation of the round trip times.wollman1997-07-183-19/+33
| | | | | | | This isn't necessarily the best statistic, but it is by far the easiest to calculate. Update the man page to be more explicit about precisely which statistics are printed out. Revert some of jmg's bogus man page changes from rev 1.11.
* A not initialized variable forced malloc to abort if the userwosch1997-07-181-2/+3
| | | | | | press ^Z (undelete line). Detected by: /etc/malloc.conf -> AJ
* `cp -r' -> `cp -R'wosch1997-07-181-2/+2
| | | | Option -r is obsolete and buggy.
* An actual fix for the routing default crashes thatjulian1997-07-181-15/+25
| | | | | | | 1/ is compatible with the old route(1) in case needed. 2/ actually fixes the problem while vetting bad user input. note: I have already fixed route(1) so the problem shouldn't occur. if it does. use 0.0.0.0/0 instead of the word 'default' :)
* Check if routed had the same problems that route(1) had.julian1997-07-182-19/+35
| | | | | | | The answer is not really, but almost. it sent data that was ok, though it was a hack, but it was bug-compatible with the kernel on receiving them. This also had been fixed with a hack.. I hacked it better I think.
* Make sleep() and usleep() "eat" any stray SIGALRM signals during thepeter1997-07-182-49/+29
| | | | | | | | lifetime of the call, just like the old implementation did. Previously, we were only eating them if the application did not call sleep()/usleep() with SIGALRM masked. Submitted by: ache
* fix what appears to me to be absolutle bogus codejulian1997-07-181-6/+7
| | | | | | | | to do with netmasks.. we fed totally bogus data into the kernel to do with default routes and it just believed us. this led to: 1/ kernel panics 2/ the default route refusing to be deleted or added (depending on a number of factors, usually it worked ok.)
OpenPOWER on IntegriCloud