summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* If the NFS/TCP stream is out of sync between the client and server,ps2005-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
* Start each of the license/copyright comments with /*-imp2005-01-05106-110/+110
|
* Typo.jhb2005-01-051-1/+1
|
* Align if else if properlyphk2005-01-051-6/+4
|
* Style: new-speak functions, remove pointless "return".phk2005-01-051-137/+44
|
* - Move the function prototypes for kern_setrlimit() and kern_wait() tojhb2005-01-057-10/+13
| | | | | sys/syscallsubr.h where all the other kern_foo() prototypes live. - Resort kern_execve() while I'm there.
* Start each of the license/copyright comments with /*-imp2005-01-0527-28/+31
|
* Remove obsolete note about the boot loader not being ready for stable.imp2005-01-051-10/+0
| | | | It has been in stable for at least 5 years now.
* Make an attempt at explaining why sx(9) locks cannot be safely obtainedkeramida2005-01-051-0/+9
| | | | | | | | after acquiring a mutex(9). PR: docs/75571 Submitted by: darrenr Explanation by: jhb
* Start all license statements with /*-imp2005-01-05116-165/+121
|
* Clarify /*- convention.imp2005-01-051-3/+13
|
* Rework the optimization for spinlocks on UP to be slightly less drastic andjhb2005-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
* These appear to be unused in our tree, so remove them.imp2005-01-052-111/+0
|
* Begin all license/copyright comments with /*-imp2005-01-0534-34/+34
|
* PC98 will never be defined for amd64imp2005-01-051-5/+0
|
* Fix KASSERT inversion that was introduced in 1.150, resulting in instantkeramida2005-01-051-1/+1
| | | | | | panic curlen != 0, which is perfectly normal. Approved by: mux
* Add support for Chase/Perle PCI FAST-4 4 port serial cards which appearwilko2005-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
* Begin all license/copyright comments with /*- or #-imp2005-01-05114-128/+128
|
* A large majority of the source files in the tree start their licenseimp2005-01-051-0/+10
| | | | | | | | and copyright statements in a comment that begins with /*-. Document this tradition. A strict adherence to this rule will help resellers that wish to publish all copyright notices, generated automatically from the tree. There are too many variant licenses to do it purely by more complicated pattern matching.
* Start all license/copyright notice comments with /*-, per traditionimp2005-01-059-9/+9
|
* Changes corresponding to the 9.1.5.2 release of twa on the 3ware website.vkashyap2005-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
* Add forgotten -a to the usage() message.le2005-01-051-1/+1
|
* Teach sdpd(8) about 32-bit and 128-bit uuid's.emax2005-01-055-13/+162
| | | | MFC after: 3 days
* Remove an unnecessary defination of New_Chunk, which has beendelphij2005-01-051-2/+0
| | | | defined in libdisk.h.
* Add a usb category for USB PRs.ceri2005-01-051-0/+1
| | | | | Requested by: Craig Rodrigues on behalf of usb@ MFC After: 1 day
* Fix a typo in comment.cognet2005-01-051-1/+1
| | | | Reviewed by: mux (mentor)
* Make sis_initl() take a typed argument.phk2005-01-051-24/+15
| | | | | Expect caller to lock before calling sis_stop() Various style stuff.
* Add locked/unlocked variants of sis_init()phk2005-01-051-15/+22
|
* Make a locked and unlocked variant of sis_start()phk2005-01-051-15/+20
|
* o Add -4 and -6 flags to a man page and usage(). Bump the man pagemaxim2005-01-052-3/+12
| | | | date.
* Remove trailing spaces.krion2005-01-051-4/+4
| | | | Forgotten by: me
* o Remove -t flag from getopt(3), it was killed in rev. 1.15 threemaxim2005-01-051-1/+1
| | | | years ago.
* Don't declare variables "register", the compiler ought to know what to do.phk2005-01-051-6/+6
|
* - Initial revamp of vop_table.tcl. This scripting is ugly and will bearr2005-01-051-0/+255
| | | | | | | | cleaned up; just wanted to make a place holder. The biggest issue is that it is an incomplete revamp; that is... the inconsistent naming table generation is not done yet ... will be added soon with the clean up. The purpose of this script is to handle the vop_vector changes that phk@ did over the recent weeks.
* Add needed synchronization to the error handling code that was introducedalc2005-01-051-0/+6
| | | | | | in revision 1.141. Lock assertion failures reported by: Kris Kennaway
* o Use tab instead of spaces for puc(4) line.kuriyama2005-01-054-12/+12
| | | | o Use capitalized "Ethernet" for consistency.
* - add new supported chips: 82541ER and 82546GBbrueffer2005-01-051-6/+6
| | | | | | | | - add the long supported, but still missing 82545 - change .Nd to look better (no need to mention FreeBSD there) - bump .Dd MFC after: 3 days
* Fix comment. One of the two "Step 4" shuold be a "step 5"julian2005-01-051-1/+1
|
* Disable checksum offloading by default. It seems to produce corrupted packetscognet2005-01-051-2/+2
| | | | | | | with some revisions of the chip (particularly when using multiple TX descriptors). MFC after: 1 week
* Instead of keeping track of the index into the receive ring use the alreadyphk2005-01-042-8/+6
| | | | implemented "sis_nextdesc" pointer to keep a pointer instead.
* Forget about the sis_list_data and sis_ring_data structures and embeddphk2005-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.
* Prototype busdma callback using the typedef.phk2005-01-041-1/+1
|
* Kill a half dead comment. It's first half was killed in rev 1.12.rik2005-01-041-1/+0
| | | | MFC after: 3 days
* o Print a correct status for unix domain sockets.maxim2005-01-041-0/+2
| | | | | | | | | o Restore input mode when return from the command one. PR: bin/49983 Submitted by: Volker Stolz OK in general from: markm MFC after: 1 month
* Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure.emax2005-01-042-2/+2
| | | | | | | class is a reserved word in C++ Submitted by: Markus Brueffer < markus AT brueffer DOT de > MFC after: 3 days
* Use __unused macro instead of a bare void for main().delphij2005-01-041-1/+1
| | | | Suggested by: nectar
* Fix typo: NUL -> NULLemax2005-01-041-2/+2
| | | | | Submitted by: Markus Brueffer < markus AT brueffer DOT de > MFC after: 3 days
* Allow fxp(4) cards with a revision id of 0 to use the 82503 serialmux2005-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>
* Regenerate.jhb2005-01-044-13/+15
|
* Partial sync up to the master syscalls.master file:jhb2005-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
OpenPOWER on IntegriCloud