summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Decode all currently supported values of the ptrace `request' arg.bde1999-06-261-3/+20
|
* Add -d option to vipw(8) to allow selection of an alternative directorysheldonh1999-06-264-19/+57
| | | | | | | for the password files. PR: 2703 Submitted by: jmg
* Correct usage messagebrian1999-06-261-2/+2
|
* Don't bother read()ing if we ``expect'' nothing in our chat script.brian1999-06-261-2/+2
|
* If we run out of chat script immediately after a successfully executedbrian1999-06-261-2/+6
| | | | | | | expect-send-expect sequence, finish gracefully, don't core dump. This bug has been there for over a year - I could never reproduce it ! Straw provided by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* Convert buffer locking from using the B_BUSY and B_WANTED flags to usingmckusick1999-06-2654-349/+563
| | | | | | | lockmgr locks. This commit should be functionally equivalent to the old semantics. That is, all buffer locking is done with LK_EXCLUSIVE requests. Changes to take advantage of LK_SHARED and LK_RECURSIVE will be done in future commits.
* In in_pcbconnect(), check the return value from in_pcbbind() andpb1999-06-251-3/+6
| | | | | | | | | | | | exit on errors. If we don't, in_pcbrehash() is called without a preceeding in_pcbinshash(), causing a crash. There are apparently several conditions that could cause the crash; PR misc/12256 is only one of these. PR: misc/12256
* Sort options.obrien1999-06-251-21/+39
| | | | Add options in usage() not documented.
* Fix -1 (onetry) fails, exit(2) rather than exit(1) so an error from thisobrien1999-06-251-3/+3
| | | | option is distingishable from other errors.
* Fix bug (introduced by me) where UDP port numbers were starting at 1 insteadarchie1999-06-251-3/+7
| | | | | | of 33435 like before. Reported by: John Polstra <jdp@polstra.com>
* Make a reference to rtprio, which will definatly be of interest to someonebillf1999-06-252-3/+6
| | | | | | looking at this page. Requested By: Keith Stevenson <k.stevenson@louisville.edu>
* Add Pro/100+ (i82559) to the list of supported products.mph1999-06-252-10/+12
| | | | Approved by: dg
* From submitter:kato1999-06-252-114/+106
| | | | | | | | | | | The attached diff attempts to eliminate as much of the difference between the i386 and the pc98 version of the file as possible. It should not make any semantic difference (it consists of whitespace changes, order changes, comment changes, changes of case for hex constants, and merging in a couple of constants that hadn't made it from the i386 version.) Submitted by: eivind
* - add "-s src_addr" option to allow setting of the source IP address;ru1999-06-257-75/+108
| | | | | - fix two minor bugs; - slightly cleanup manpage.
* Never return the root node itself from rn_match(); return NULL instead.pb1999-06-251-2/+5
| | | | | | | | | | | | This caused a panic in rtfreee() called with a root node from the routing socket code (when processing a RTM_GET message looking for the default route while there is none). Since no existing code seems to have any use getting the root node from rn_match(), it seems cleaner never to return it rather than check for this condition at the caller's. PR: kern/12265
* Don't continue if parsing failed when -f is in use. Exit with nonzero value.cracauer1999-06-251-3/+2
|
* Nine'th update to the new ATA/ATAPI driver:sos1999-06-2510-468/+650
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The atapi subsystem has gotten better error handeling and timeouts, it also tries a REQUEST SENSE command when devices returns errors, to give a little more info as to what went wrong. It might be a little verbose for now, but I'm interested in as much feedback on errors as possible, especially timeouts, as I'm a bit in doubt if I've chosen resonable default values everywhere. The disk driver has been changed a bit to prepare for tagged queing, which is next on my list. The disk driver has grown a dump routine, I got one implementation from Darrell Anderson <anderson@cs.duke.edu> which also did partial dumps (usefull on big memory machines) I left out the partial stuff for now, and changed the rest alot to fit into the new ad_request framework. Some minor cleanups and rearrangements as well. As usual USE AT YOUR OWN RISK!!, this is still pre alpha level code. Especially the DMA support can hose your disk real bad if anything goes wrong, again you have been warned :) Notebook owners should be carefull that their machines dont suspend as this might cause trouble... But please tell me how it works for you! Enjoy! -Søren
* Make this sample build again.dfr1999-06-253-4/+4
|
* Add function cdevsw_remove, the opposite of cdevsw_add: remove angrog1999-06-253-3/+26
| | | | | | entry in cdevsw (and bdevsw if appropriate). Reviewed-by: phk
* fix the links to the bitstring man page..jmg1999-06-252-5/+5
| | | | fix wording in man page, through != to
* Fix a reference counting problem when using dlopen(NULL, ...).jdp1999-06-251-3/+4
| | | | PR: bin/12129
* Fix a serious performance bug for large programs on the Alpha,jdp1999-06-257-103/+231
| | | | | | | | | | | | | | | discovered by Hidetoshi Shimokawa. Large programs need multiple GOTs. The lazy binding stub in the PLT can be reached from any of these GOTs, but the dynamic linker only has enough information to fix up the first GOT entry. Thus calls through the other GOTs went through the time-consuming lazy binding process on every call. This fix rewrites the PLT entries themselves to bypass the lazy binding. Tested by Hidetoshi Shimokawa and Steve Price. Reviewed by: Doug Rabson <dfr@freebsd.org>
* add support to buildworld as a normal user:jmg1999-06-243-10/+12
| | | | | | | -DNOFSCHG disables installation of libs with flag schg GAMEGRP change the group with which games are installed also organize the binary section into alphebetical order some what..
* Fix warning message; that was 4GB, not 2GB. I apparently can't dojlemon1999-06-242-4/+4
| | | | arithmetic today.
* Explicitly ignore any memory > 2GB, we don't support it yet.jlemon1999-06-242-2/+14
|
* Only include AMD wt_alloc routines if I586_CPU is defined. Fixesjlemon1999-06-242-4/+4
| | | | | | CPU_WT_ALLOC for cyrix chips. Submitted by: "Brian Smith" <dbsoft@technologist.com>
* Fix typo (missing double quote)n_hibma1999-06-241-2/+2
|
* (corrections for type change in softc)mjacob1999-06-242-6/+6
|
* Bruce pointed out I was being silly with volatile.mjacob1999-06-241-5/+5
| | | | Submitted by: bde@freebsd.org
* Quirk Tandberg 4100 like Tandberg 4200.mjacob1999-06-241-1/+5
| | | | | | PR: 11675 Reviewed by: msmith@FreeBSD.ORG Submitted by: blank@uni-trier.de
* Sync with sys/dev/syscons/scvtb.c revision 1.2.kato1999-06-242-2/+46
| | | | Submitted by: yokota
* Fix ESC[P (delete N chars) and ESC[@ (insert N chars). These deletionyokota1999-06-242-2/+21
| | | | | | | | | and insertion should affect the line the cursor is on only. This change should have been committed together with syscons.c rev 1.308. (I forgot to do so, when I committed syscons.c :-( Pointed out by: sos
* Merge with sys/isa/syscons_isa.c and sys/dev/syscons/syscons.ckato1999-06-243-13/+15
| | | | | | revisions 1.6 and 1.308, respectively. Pointed-out by: yokota
* PC98 part of the second phase of syscons reorganization.kato1999-06-2415-3037/+4056
| | | | Submitted by: yokota
* Actually install the virgin copies of the /etc files that we so proudlysheldonh1999-06-244-7/+43
| | | | | | | claim to install in /usr/share/examples/etc/README.examples . PR: 5207 Reported by: "Wayne M. Barnes" <wayne@barnes1.wustl.edu>
* Fix ESC[P (delete N chars) and ESC[@ (insert N chars). These deletionyokota1999-06-241-5/+7
| | | | and insertion should affect the line the cursor is on only.
* Declare the correct size of softc and fix sc_get_softc().yokota1999-06-241-4/+4
|
* set_drive_state:grog1999-06-241-0/+3
| | | | | | | If the drive goes down, queue a close to the daemon. In many cases this function gets called in process context, so it could do it directly, but it's more trouble finding out where we came from than getting the daemon to do it.
* build_request_buffer:grog1999-06-241-5/+13
| | | | | | | | | | | Don't bzero the buffer structure, it's been done already by allocrqg. sdio: Build up a correct buffer header, don't steal linkages from system buffer headers. Noticed-by: mckusick
* Split close_drive into two parts to ensure correct locking against thegrog1999-06-241-21/+30
| | | | daemon before closing a drive.
* Implement daemonrq_closedrive function to close a drive.grog1999-06-242-1/+7
|
* free_drive:grog1999-06-241-2/+2
| | | | Use new function close_locked_drive to close the drive.
* Clarify some comments.grog1999-06-241-20/+26
| | | | | struct request: Add a daemon function to close drives when they go down.
* Sync with sys/i386/isa/clock.c revision 1.137.kato1999-06-243-15/+21
|
* Sync with sys/i386/conf/options.i386 revision 1.118.kato1999-06-242-8/+30
|
* Add new file that needs compiling.obrien1999-06-241-3/+3
|
* Per Ken's request, back out my last change to this file. iostat's manimp1999-06-241-2/+2
| | | | | page documents '?' as a valid option, as does the usage message. None of the other programs' man pages documented '?' as a valid option.
* Don't add '?' to getopt's options.imp1999-06-241-1/+1
|
* Two getopts related nits:imp1999-06-249-18/+18
| | | | | | o getopt returns -1 rather than EOF on errors o getopt returns '?' for characters it doesn't know about, so don't include them in the getopt options string.
* '?' shouldn't be in the usage string. Unknown characters are alreadyimp1999-06-244-8/+8
| | | | converted to '?'.
OpenPOWER on IntegriCloud