summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* const correctness for dl*()brian1997-11-226-39/+39
|
* Suggest using "-b" or "-t" if the connection is reset (typical symptomfenner1997-11-221-1/+5
| | | | of broken TCP stack).
* Fix bit-twiddling in sigismember(3).jraynard1997-11-211-1/+1
| | | | | | | | Note this ONLY affects the function version - the macro version is always used unless for some reason you put #undef sigismember in your code before calling it. PR: 3615 Submitted by: Nanbor Wang <nw1@cs.wustl.edu> (slightly amended patch)
* Correct CPU_CYRIX_NO_LOCK fix.jlemon1997-11-212-10/+10
| | | | | PR: 5121 Pointed out by: Matthew Hunt
* Fixed setting of `safepri'. It should be SWI_AST_MASK most of thebde1997-11-215-5/+36
| | | | | | | | time, but was left at 0. This caused the "can't happen" case in splz_swi to happen for panics when tsleep() calls splx(safepri) and there is a SWI_AST pending. This was harmless because the the error handling happens to be right. Debugging this was tricky because debugger traps force SWI_AST_MASK on in `cpl'.
* Moved splhigh()/spl0() calls from isa_configure() to configure() so thatbde1997-11-214-8/+28
| | | | | | | | | | | | | there is a natural place to initialize `safepri' in a future commit. Spinoffs: - spl0() gets called in the unlikely event that isa is not configured. - configure() has better control over enabling interrupts. - it is now less unclear that interrupts aren't actually enabled early. Rev.1.48 of autoconf.c seems to have done the opposite of what was intended - moving the isa_configure() call delayed the spl0() side effect. Added some comments about the bogons. Removed the splhigh() call since it is a no-op.
* Make comp_vgaregs() less strict about VGA register values whenyokota1997-11-216-435/+696
| | | | | | | | | | | | | | | checking the BIOS video mode paramter table. Now syscons uses the parameter table even if some bits in the table are different from the current VGA register settings. Even if comp_vgaregs() finds that the BIOS video parameter table looks totally unfamiliar to it, syscons allows the user to change the current video mode to some modes which are based on the VGA 80x25 mode. They are VGA 80x30, VGA 80x50, VGA 80x60. In this case the user will be warned, during boot, that video mode switching is only paritally supported on his machine. PR: bin/4477
* Const poisoning from ks_shortdesc.bde1997-11-213-6/+6
|
* Fix for a PS/2 mouse model from MouseSystems. It now appears thatyokota1997-11-211-1/+5
| | | | | | | | | this mouse can correctly operate only in the high resolution mode. If the mouse pointer jumps to the top or left edge or the top-left corner of the screen, try defining PSM_MSCKLUDGE in the kernel configuration file. This option will put the mouse in the high resolution mode during device initialization.
* Correct incompletes .Xrs. Remove duplicate #includes and unused variables.charnier1997-11-217-52/+58
|
* Use err(3). -Wall cleaning.charnier1997-11-212-15/+17
|
* Cosmetics in man page. Exit(-1) -> exit(1).charnier1997-11-216-30/+36
|
* Previous commit refers to SWAP_PART, which is only defined if the includepeter1997-11-212-2/+4
| | | | file that it's in is #included...
* - In addtition to flushing the routes, also flush the arp cache when bringingnate1997-11-201-2/+3
| | | | | | up the new network link. Submitted by: Guido van Rooij <guido@gvr.org>
* Fixed a sloppy common-style definitions.bde1997-11-203-10/+13
|
* Add Matt Dillon's quick fix hack for the self-connect DoS.wollman1997-11-202-2/+28
| | | | PR: 5103
* Removed a duplicate (sloppy common-style) definition.bde1997-11-202-8/+10
| | | | Fixed some style bugs.
* Moved some extern declarations to header files (unused ones to /dev/null).bde1997-11-2010-26/+30
|
* Avoid passing a `retval' to wait1()bde1997-11-201-13/+10
| | | | | | | Disallow wait options that are not a combination of the standard POSIX options WUNTRACED and WNOHANG, as is required by POSIX. BSD doesn't have any extensions here, but the code was `#ifdef notyet' for some reason.
* Avoid passing some more `retval's.bde1997-11-204-45/+36
|
* Fixed wrong limits for the kernel text in db_numargs(). Thebde1997-11-202-6/+14
| | | | | | | | interval [VM_MIN_KERNEL_ADDRESS, etext] was used instead of [btext, etext). Added a comment about this being completely wrong for LKMs. This only affects interpreting the instructions after the return to attempt decide the number of args. The attempt usually fails anyway.
* Fixed write enabling of the kernel text section. The overlapbde1997-11-202-14/+10
| | | | | | | | | | | | | | | checking was mostly wrong at the boundaries. For the lower limit, VM_MIN_KERNEL_ADDRESS was used instead of btext and there was an off-by-(`size' - 1) error. For the upper limit, &etext was used instead of etext and there was an off-by-1 error. The bugs were harmless because `size' is not too large and some memory is mapped just beyond the ends. We still depend on the former to avoid having to handle the case where the memory range covers the whole text section, and on the latter to prevent problems when we map just beyond an end to allow writing an address range that overlaps the end. Fixed placement of a nearby comment.
* Don't allow setting the dump device to any partition except thebde1997-11-202-2/+16
| | | | | | | one traditionally reserved for swap devices. The restrictions should now be the same as the ones for dumpsys(). The restriction on the partition should be removed someday, and dumpsys() shouldn't repeat all the checks.
* Use consistent description strings for M_EXT2NODE. This also fixes abde1997-11-202-2/+2
| | | | spelling error in the unused string.
* Cleaned up revs.1.19-1.21:bde1997-11-201-17/+14
|
* Removed unused includes.bde1997-11-201-16/+17
| | | | | | | | Staticized. Avoid passing a `retval' to fork1(). Fixed some style bugs.
* Fixed marking of access time for special files and fifos (don't dobde1997-11-201-8/+9
| | | | | | | | | | | | | | | | | | | it if the file system is mounted noatime). Not fixed: the access time is marked at the start of a read() and not marked on successful completion. I think this should be handled at the vfs level. Print a better panic message for missing vops. Don't use printf() before panic(), since the printf()ed part isn't shown by gdb. This actually loses a little with the current gdb, since gdb just prints the fmt arg to panic, so %'s aren't expanded. gdb should fetch the full message from the message buffer if possible. Fixed default vop function for vop_getpages_desc. It needs to just return EOPNOTSUPP so that the vnode pager can get the pages in using a general method. Panicing broke exec'ing of files on ext2fs file systems. ffs works because it doesn't use the default. Fixed nearby style bugs.
* - Renamed <pccard/card.h> -> <pccard/cardinfo.h>.nate1997-11-2010-20/+20
| | | | | Forgotten by: me Reminded by: Bruce
* Don't check for the unlikely case of useconds == 0 here. The kernelbde1997-11-201-7/+4
| | | | | | checks it. Fixed a style bug.
* stat() the correct file in execvp() so that the fine tuned errno handlingbde1997-11-201-2/+2
| | | | actually works.
* Add const to copyright string. Put sccsid under #if 0/#endif control.charnier1997-11-202-7/+7
|
* Use err(3). exit(-1) -> exit(1).charnier1997-11-201-11/+11
|
* Cosmetic in error strings. Sort Xrefs. Add usage (with syslog capability).charnier1997-11-203-55/+67
|
* Remove sccsid, not present in Lite2.charnier1997-11-203-14/+3
|
* Define MASTER_SITE_SUBDIR and PATCH_SITE_SUBDIR to default to "." soasami1997-11-201-1/+11
| | | | | | | | | | we won't have double-slashes. Add support for new port variable MANUAL_PACKAGE_BUILD. If this is defined as well as the user variable PACKAGE_BUILDING, the port will be ignored. This is used to mark ports that can be built normally except on a machine that has a lot of conflicting ports (i.e., our package building machine).
* Add new target "checksubdirs". It will warn about any subdirectories thatasami1997-11-201-1/+29
| | | | | are not in the SUBDIR list. It also knows about the "standard" directories that are to be ignored ("CVS", "distfiles", etc.).
* Style fix.guido1997-11-191-5/+7
| | | | Complaint by: Bruce
* - Setup a default route (if one is set) when the card is inserted. Thisnate1997-11-191-0/+15
| | | | | | needs to be re-thought, but should work better for 95% of the users. Stolen from: rc.network
* Sync with sys/i386/isa/pcaudio.c revision 1.38.kato1997-11-191-13/+13
|
* Sync with sys/i386/isa/npx.c revision 1.54.kato1997-11-191-3/+10
|
* Sync with sys/i386/isa/mse.c revision 1.35.kato1997-11-191-2/+2
|
* Synchronize with sys/i386/isa/clock.c revision 1.104.kato1997-11-193-9/+12
|
* Sync with sys/i386/conf/majors.i386 revision up to 1.22.kato1997-11-191-1/+2
|
* - Renamed log_1s() to logmsg().nate1997-11-194-26/+26
|
* - Include <pccard/cardinfo.h> instead of <pccard/card.h> which was recentlynate1997-11-1810-20/+20
| | | | renamed.
* - Renamed 'card.h' to 'cardinfo.h', to avoid namespace collisions withnate1997-11-185-146/+6
| | | | | | the card.h that config builds. [ Repository renaming done in the background to save the card.h history ]
* Allow zero args to "cvs log".brian1997-11-181-2/+2
|
* Add the ``loop'' example to the right file (oops).brian1997-11-182-27/+27
|
* Add a loopback example.brian1997-11-181-1/+26
|
* Fix interactive mode so that it doesn't require a passwd (again!).brian1997-11-181-1/+4
|
OpenPOWER on IntegriCloud