aboutsummaryrefslogtreecommitdiff
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
...
* Unbreak the tinderbox, make this compile.Maxim Konovalov2005-01-061-1/+1
| | | | Notes: svn path=/head/; revision=139762
* Clear PCIM_CMD_SERRESPEN and PCIM_CMD_PERRESPEN for broken hardware.Hidetoshi Shimokawa2005-01-061-1/+2
| | | | | | | | | Some amd64 laptops fail to boot with these flags. PR: kern/75482 Notes: svn path=/head/; revision=139759
* Modules on PPC need to be compiled with -mlongcall to get aroundPeter Grehan2005-01-061-0/+4
| | | | | | | | the +/-64k blr offset limitation. With gcc bug #12769 fixed, it's time to put enable this. Notes: svn path=/head/; revision=139758
* Make this compile from the last commitScott Long2005-01-061-1/+1
| | | | Notes: svn path=/head/; revision=139757
* Return ETIMEDOUT when thread is timeouted since POSIX threadDavid Xu2005-01-061-5/+7
| | | | | | | | APIs expect ETIMEDOUT not EAGAIN, this simplifies userland code a bit. Notes: svn path=/head/; revision=139751
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-06774-868/+886
| | | | Notes: svn path=/head/; revision=139749
* add copyright notice to something I wrote that didn't have oneWarner Losh2005-01-061-1/+1
| | | | Notes: svn path=/head/; revision=139748
* Start each of the license/copyright comments with /*-Warner Losh2005-01-0624-24/+24
| | | | Notes: svn path=/head/; revision=139747
* Start each of the license/copyright comments with /*-Warner Losh2005-01-0538-54/+54
| | | | Notes: svn path=/head/; revision=139745
* If the NFS/TCP stream is out of sync between the client and server,Paul Saab2005-01-051-1/+1
| | | | | | | | | | | and if the client (erroneously) reads the RPC length as 0 bytes, the client can loop around in the socket callback. Explicitly check for the length being 0 case and teardown/re-connect. Submitted by: Mohan Srinivasan Notes: svn path=/head/; revision=139744
* Start each of the license/copyright comments with /*-Warner Losh2005-01-05106-110/+110
| | | | Notes: svn path=/head/; revision=139743
* Typo.John Baldwin2005-01-051-1/+1
| | | | Notes: svn path=/head/; revision=139742
* Align if else if properlyPoul-Henning Kamp2005-01-051-6/+4
| | | | Notes: svn path=/head/; revision=139741
* Style: new-speak functions, remove pointless "return".Poul-Henning Kamp2005-01-051-137/+44
| | | | Notes: svn path=/head/; revision=139740
* - Move the function prototypes for kern_setrlimit() and kern_wait() toJohn Baldwin2005-01-057-10/+13
| | | | | | | | sys/syscallsubr.h where all the other kern_foo() prototypes live. - Resort kern_execve() while I'm there. Notes: svn path=/head/; revision=139739
* Start each of the license/copyright comments with /*-Warner Losh2005-01-0527-28/+31
| | | | Notes: svn path=/head/; revision=139738
* Remove obsolete note about the boot loader not being ready for stable.Warner Losh2005-01-051-10/+0
| | | | | | | It has been in stable for at least 5 years now. Notes: svn path=/head/; revision=139737
* Start all license statements with /*-Warner Losh2005-01-05116-165/+121
| | | | Notes: svn path=/head/; revision=139735
* Rework the optimization for spinlocks on UP to be slightly less drastic andJohn Baldwin2005-01-052-13/+28
| | | | | | | | | | | | | | | turn it back on. Specifically, the actual changes are now less intrusive in that the _get_spin_lock() and _rel_spin_lock() macros now have their contents changed for UP vs SMP kernels which centralizes the changes. Also, UP kernels do not use _mtx_lock_spin() and no longer include it. The UP versions of the spin lock functions do not use any atomic operations, but simple compares and stores which allow mtx_owned() to still work for spin locks while removing the overhead of atomic operations. Tested on: i386, alpha Notes: svn path=/head/; revision=139733
* These appear to be unused in our tree, so remove them.Warner Losh2005-01-052-111/+0
| | | | Notes: svn path=/head/; revision=139732
* Begin all license/copyright comments with /*-Warner Losh2005-01-0534-34/+34
| | | | Notes: svn path=/head/; revision=139731
* PC98 will never be defined for amd64Warner Losh2005-01-051-5/+0
| | | | Notes: svn path=/head/; revision=139730
* Fix KASSERT inversion that was introduced in 1.150, resulting in instantGiorgos Keramidas2005-01-051-1/+1
| | | | | | | | | panic curlen != 0, which is perfectly normal. Approved by: mux Notes: svn path=/head/; revision=139729
* Add support for Chase/Perle PCI FAST-4 4 port serial cards which appearWilko Bulte2005-01-051-0/+36
| | | | | | | | | | | | to be the same as Boca Research Turbo Serial 654 (4 serial port). While add the 8 port variants as well. Submitted by: sten@blinkenlights.nl PR: kern/75793 MFC after: 1 week Notes: svn path=/head/; revision=139728
* Begin all license/copyright comments with /*- or #-Warner Losh2005-01-05114-128/+128
| | | | Notes: svn path=/head/; revision=139727
* Start all license/copyright notice comments with /*-, per traditionWarner Losh2005-01-059-9/+9
| | | | Notes: svn path=/head/; revision=139724
* Changes corresponding to the 9.1.5.2 release of twa on the 3ware website.Vinod Kashyap2005-01-058-19555/+22218
| | | | | | | | | | | | | | | The main changes are: 1. Use of multiple bus dma tags. 2. Timing of CAM requests by the driver. 3, Firmware interface change relating to retrieving AEN's. 4. Removal of twa_intrhook. 5. Bundling of latest firmware with BBU capability. Reviewed by:re Approved by:re Notes: svn path=/head/; revision=139723
* Make sis_initl() take a typed argument.Poul-Henning Kamp2005-01-051-24/+15
| | | | | | | | Expect caller to lock before calling sis_stop() Various style stuff. Notes: svn path=/head/; revision=139717
* Add locked/unlocked variants of sis_init()Poul-Henning Kamp2005-01-051-15/+22
| | | | Notes: svn path=/head/; revision=139715
* Make a locked and unlocked variant of sis_start()Poul-Henning Kamp2005-01-051-15/+20
| | | | Notes: svn path=/head/; revision=139714
* Don't declare variables "register", the compiler ought to know what to do.Poul-Henning Kamp2005-01-051-6/+6
| | | | Notes: svn path=/head/; revision=139708
* Add needed synchronization to the error handling code that was introducedAlan Cox2005-01-051-0/+6
| | | | | | | | | in revision 1.141. Lock assertion failures reported by: Kris Kennaway Notes: svn path=/head/; revision=139700
* o Use tab instead of spaces for puc(4) line.Jun Kuriyama2005-01-054-12/+12
| | | | | | | o Use capitalized "Ethernet" for consistency. Notes: svn path=/head/; revision=139699
* Fix comment. One of the two "Step 4" shuold be a "step 5"Julian Elischer2005-01-051-1/+1
| | | | Notes: svn path=/head/; revision=139696
* Disable checksum offloading by default. It seems to produce corrupted packetsOlivier Houchard2005-01-051-2/+2
| | | | | | | | | | with some revisions of the chip (particularly when using multiple TX descriptors). MFC after: 1 week Notes: svn path=/head/; revision=139693
* Instead of keeping track of the index into the receive ring use the alreadyPoul-Henning Kamp2005-01-042-8/+6
| | | | | | | implemented "sis_nextdesc" pointer to keep a pointer instead. Notes: svn path=/head/; revision=139691
* Forget about the sis_list_data and sis_ring_data structures and embeddPoul-Henning Kamp2005-01-042-132/+109
| | | | | | | | | | their fields directly in the softc structure. This is a no-op which shortens most of the affected source lines by N * 10 characters. Notes: svn path=/head/; revision=139690
* Prototype busdma callback using the typedef.Poul-Henning Kamp2005-01-041-1/+1
| | | | Notes: svn path=/head/; revision=139689
* Kill a half dead comment. It's first half was killed in rev 1.12.Roman Kurakin2005-01-041-1/+0
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=139688
* Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure.Maksim Yevmenkin2005-01-041-1/+1
| | | | | | | | | | class is a reserved word in C++ Submitted by: Markus Brueffer < markus AT brueffer DOT de > MFC after: 3 days Notes: svn path=/head/; revision=139686
* Allow fxp(4) cards with a revision id of 0 to use the 82503 serialMaxime Henrion2005-01-041-1/+1
| | | | | | | | | | | | interface as well. This is not an expected revision id per the datasheet, but unfortunately there are such cards out there with a 82557 chipset, and they want to use the 82503. PR: kern/75739 Reported by: Andre Albsmeier <andre.albsmeier@siemens.com> Notes: svn path=/head/; revision=139683
* Regenerate.John Baldwin2005-01-044-13/+15
| | | | Notes: svn path=/head/; revision=139682
* Partial sync up to the master syscalls.master file:John Baldwin2005-01-041-8/+9
| | | | | | | | | | | - Mark mount, unmount and nmount MPSAFE. - Add a stub for _umtx_op(). - Mark open(), link(), unlink(), and freebsd32_sigaction() MPSAFE. Pointy hats to: several Notes: svn path=/head/; revision=139681
* return after freeing data element, instead of falling through, and usingJohn-Mark Gurney2005-01-041-0/+1
| | | | | | | | | the free'd element, and ultimate NULL deref of the failed allocation. MFC after: 1 week Notes: svn path=/head/; revision=139680
* - Fix 'rebuild' command - it can no longer relay on retaste eventPawel Jakub Dawidek2005-01-043-50/+34
| | | | | | | | | | | (we ignore it). - Remove code used for handling spoil events, as spoiling is not possible anymore, because we keep consumers open for writing all the time. MFC after: 4 days Notes: svn path=/head/; revision=139671
* Spoiling is now not possible, because we keep consumers open for writingPawel Jakub Dawidek2005-01-043-38/+13
| | | | | | | | | all the time. Remove unused code then. MFC after: 4 days Notes: svn path=/head/; revision=139670
* Remove old wdc driver completely.Yoshihiro Takahashi2005-01-041-8/+0
| | | | Notes: svn path=/head/; revision=139668
* Minor nits in formatting continued linesWarner Losh2005-01-041-2/+2
| | | | Notes: svn path=/head/; revision=139667
* cnw as a pccard device was commented out, so uncomment it so LINT will build.Warner Losh2005-01-041-1/+1
| | | | Notes: svn path=/head/; revision=139666
* Since we do not support forceful unmount of DEVFS we can do away withPoul-Henning Kamp2005-01-041-45/+3
| | | | | | | the partially implemented vnode-readoption code in vgonechrl(). Notes: svn path=/head/; revision=139665