summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Avoid the usurping messagen_hibma1999-11-112-2/+15
| |
* | Give nfsd the ability to bind to specific IP addresses through the -hdillon1999-11-114-50/+186
| | | | | | | | | | | | | | | | | | | | option and add explicit option to bind to the wildcard address. The default is to bind to the wildcard address when no -h option has been specified and thus backwards compatibility is maintained. PR: kern/13049 Reviewed by: David Malone <dwmalone@maths.tcd.ie> Submitted by: Matt Dillon <dillon@freebsd.org>, David Malone <dwmalone@maths.tcd.ie>
* | Remove special case socket sharing code in order to allow nfsd todillon1999-11-114-48/+60
| | | | | | | | | | | | | | bind IP addresses to udp/cltp sockets separately. PR: kern/13049 Reviewed by: David Malone <dwmalone@maths.tcd.ie>, freebsd-current
* | Reorganise the code so that I can add custom identify drivers dynamicallydfr1999-11-111-1/+71
| | | | | | | | | | | | | | | | during autoconfig to support strange hardware (such as the Yamaha DS-1) which implements 'legacy' ISA devices as well as a PCI device. This will allow the PCI driver for the YMF724 to add the legacy devices to the ISA bus and will allow the PnP system to automatically allocate the resources for those devices.
* | Sync with sys/isa/fd.c revision 1.167.nyan1999-11-112-98/+258
| |
* | Make `-r -s' also match the BSDI output.obrien1999-11-112-2/+2
| |
* | Add code to support ISA PnP.dfr1999-11-113-89/+248
| |
* | Correct a locking error in apause: It should always holdalc1999-11-111-14/+16
| | | | | | | | | | | | | | | | | | the simple lock when it returns. Also, eliminate spinning on a uniprocessor. It's pointless. Submitted by: bde, Assar Westerlund <assar@sics.se>
* | Oops, netgraph.o -> ether.o for the RELEASE build.brian1999-11-111-2/+2
| |
* | More bug fixes.archie1999-11-101-17/+21
| |
* | Minor change to the configuration of number of slots.archie1999-11-101-2/+2
| |
* | Re-organise the code which manages the owner of the FP state (fpcurproc).dfr1999-11-109-102/+180
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old code was spread out through the machdep code and was sloppy about enabling and disabling the FEN bit (which controls access to the FP register set). This caused a DIAGNOSTIC warning "DANGER WILL ROBINSON: FEN SET IN cpu_fork!" sometimes when operating under high loads and could conceivably lead to processes getting incorrect FP results. The new code is much more strict about the FEN bit and makes sure that *only* fpcurproc ever has it enabled. This also allows us to remove a section of code from the exception_return path which might improve performance marginally. Reviewed by: gallatin
* | Dont listen to disks that say they can only do 0 sector transfers.sos1999-11-101-1/+1
| |
* | vsprintf -> vsnprintf in msg().imp1999-11-101-1/+1
| |
* | Decremement by 1 the value taken for %j before assigning it to tm_yday,sheldonh1999-11-101-6/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which is zero-based. Correct the range checking for the value taken for %S. Add %w for the day of the week (0-6). Accept (but do nothing with) %U and %W. The comment for this change was taken from NetBSD. These changes were made after several failed attempts to contact the author of our strptime.c . PR: 10131 Submitted by: tadf@kt.rim.or.jp (Tadayoshi Funaba)
* | Allow the year to be specified with an optional century.sheldonh1999-11-102-4/+14
| | | | | | | | | | PR: 14472 Reported by: j_guojun@lbl.gov (Jin Guojun)
* | Don't call bash(1) a Korn shell clone. Instead, use pdksh(1) as ansheldonh1999-11-101-2/+2
| | | | | | | | | | | | | | example of such a clone. PR: 14601 Submitted by: Matthias Buelow <mkb@altair.mayn.de>
* | Finding root devices is a much more sane thing now.phk1999-11-101-7/+8
| |
* | ioctlname() is actually passed a register_t.dfr1999-11-101-1/+1
| | | | | | | | Pointed out by: bde
* | Make the atapi device return sensible errno's back to userland.sos1999-11-105-55/+60
| | | | | | | | Dont panic if a nonexistant device is opened.
* | Update to reflect changes in the node type.archie1999-11-106-30/+153
| |
* | Fix some bugs; seems to work now. Minor change to the configuration fieldarchie1999-11-101-35/+29
| | | | | | | | | | to make the number of compression slots parameter consistent with what IPCP negotiates (ie, the number of slots - 1).
* | Move handling of the address and control fields into the PPP node;archie1999-11-102-65/+85
| | | | | | | | | | they belong there because they are device independent. Also some other misc. fixes.
* | Two changes: (1) Use vm_page_unqueue_nowakeup in vm_page_allocalc1999-11-101-11/+2
| | | | | | | | | | | | | | instead of duplicating the code. (2) If a wired page is passed to vm_page_free_toq, panic instead of printing a friendly warning. (If we don't panic here, we'll just panic later in vm_page_unwire obscuring the problem.)
* | Fix cosmetic bug in time display. Current day logins are now displayeddavidn1999-11-101-4/+9
| | | | | | | | | | | | | | as plain time as originally intended, instead of displaying DayHH times when the login time happens to be prior the GMT - TZ difference. (Only noticable on systems operating east of GMT/UTC). Local times are now used to determine the day.
* | If dev->connected is already set to CARRIER_OK in ether_AwaitCarrier,brian1999-11-091-1/+1
| | | | | | | | don't go and set it to CARRIER_LOST !
* | Don't recurse into datalink_UpdateSet() afterbrian1999-11-092-4/+6
| | | | | | | | | | | | | | | | | | | | | | doing a HangupDone(). The HangupDone() may fuel bundle_CleanDatalinks(), and if so, the bogus UpdateSet() ends up select()ing on a closed descriptor..... Change the main `do/while' loop to a `for' loop so that any `continue's do the bundle_CleanDatalinks() & bundle_IsDead() bit.
* | Fix a boatload of warnings in the generated code on the alpha.dfr1999-11-091-1/+1
| |
* | Fix the output of 'netstat -I de0 1' for the alpha. Fix a bunch ofdfr1999-11-091-9/+10
| | | | | | | | warnings while I'm here.
* | Correct the ``-unix X'' parsing (last time I only correctedbrian1999-11-091-1/+2
| | | | | | | | | | | | ``-unitX''. Pointed out twice by: Gert-Jan Vons <gert-jan@bigfoot.com>
* | Drop ipl to zero before calling ast(). Make sure that this only happensdfr1999-11-091-0/+2
| | | | | | | | | | | | | | if we are really going to call ast() to avoid unexpected interrupt recursion. Reviewed by: bde, gallatin
* | Fix a warning.dfr1999-11-091-1/+1
| |
* | Fix a warning.dfr1999-11-091-1/+1
| |
* | Add devices from the ATA driver (ad, acd, afd, ast).sos1999-11-093-3/+18
| |
* | Be a bit smarter when identifying a netgraph nodebrian1999-11-091-55/+9
| | | | | | | | (don't dereference NULL).
* | Change the "-r" output format to match BSDI's default output format.obrien1999-11-091-2/+2
| |
* | Next step in the device cleanup process.phk1999-11-0913-652/+188
| | | | | | | | | | | | | | | | Correctly lock vnodes when calling VOP_OPEN() from filesystem mount code. Unify spec_open() for bdev and cdev cases. Remove the disabled bdev specific read/write code.
* | cleanup the IDE cases a bit, add the ad driver to the all: target.sos1999-11-092-8/+20
| |
* | Correctly record the mouse position in the current VTY.yokota1999-11-091-23/+22
| |
* | - Commented out ed driver.nyan1999-11-092-20/+24
| | | | | | | | - Added sis driver.
* | Fix typo: MOUSE_GETSTAT -> MOUSE_GETSTATUS.yokota1999-11-097-11/+11
| | | | | | | | Found by: abial
* | Sync with sys/i386/conf/options.i386 revision up to 1.127.nyan1999-11-092-2/+10
| |
* | Fix the VGLBITMAP_INITIALIZER macro; VXsize and VYsize shouldyokota1999-11-091-1/+1
| | | | | | | | be the same as Xsize and Ysize.
* | Fix dead loop if locale contains / and not all categories specifiedache1999-11-091-1/+3
| | | | | | | | | | PR: 14742 Submitted by: peter@wahoo.com.tw
* | Add libnetgraphphk1999-11-092-2/+2
| |
* | Change default to whois.crsnic.net - new Central Shared Registry for domainsache1999-11-092-5/+20
| | | | | | | | Move InterNIC to -i option
* | Re-support "tape" as an alias for device and clean up a bit more cruftpeter1999-11-093-4/+13
| | | | | | | | | | left over from the original system (d_dk was for preassigned iostat unit numbers for disks)
* | Add information about Intel managed EEPro card.wes1999-11-092-1/+4
| | | | | | | | | | PR: docs/14505 Submitted by: Stephen J. Roznowski <sjr@home.net>
* | Passing "0" or "FALSE" as the fourth argument to vm_fault is wrong. Italc1999-11-096-16/+23
| | | | | | | | should be "VM_FAULT_NORMAL".
* | Cosmetic change: correct formatting error in my previous commit.yokota1999-11-093-15/+15
| | | | | | | | | | | | | | | | "Options" should be: options<ascii space><tab>OPTION_NAME Pointed out by: obrien
OpenPOWER on IntegriCloud