summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add the 'hptrr' driver for supporting the following Highpoint RocketRAIDscottl2007-12-1525-5/+27394
| | | | | | | | | | | | | | | | | | | cards: o RocketRAID 172x series o RocketRAID 174x series o RocketRAID 2210 o RocketRAID 222x series o RocketRAID 2240 o RocketRAID 230x series o RocketRAID 231x series o RocketRAID 232x series o RocketRAID 2340 o RocketRAID 2522 Many thanks to Highpoint for their continued support of FreeBSD. Submitted by: Highpoint
* Sort.marcel2007-12-141-52/+42
|
* This file was repocopied to src/sys/powerpc/aim, where it willmarcel2007-12-1415-7483/+0
| | | | live on -- an afterlife.
* Update file list after repocopying select files frommarcel2007-12-141-14/+14
| | | | src/sys/powerpc/powerpc to src/sys/powerpc/aim.
* Forced commit to record that this file was repocopied frommarcel2007-12-142-2/+2
| | | | src/sys/powerpc/powerpc and modified for its new location.
* Add comment to pc_cp_time.obrien2007-12-141-2/+2
|
* Typodes2007-12-141-1/+1
|
* style.Makefile(5)obrien2007-12-141-1/+1
|
* Increment the version namespace for 8.0-current. New symbols anddeischen2007-12-141-0/+5
| | | | symbols whose ABI has changed should be added to FBSD_1.1.
* Remove unused file.marcel2007-12-141-110/+0
|
* o Markup and grammar fixes.maxim2007-12-141-5/+9
|
* Minor style consistency improvements.rwatson2007-12-141-2/+1
|
* Clean up namespace violations.des2007-12-147-314/+314
| | | | MFC after: 1 week
* Give a better description when a install of multiple files failsedwin2007-12-141-1/+6
| | | | | | | | | | because of the absence of a destination directory or if the "destination directory" is not a directory. PR: bin/11826 Submitted by: Denis Eremenko <moonshade@pnhz.kz> Approved by: grog@ X-MFC after: various freezes
* Update the standards section, and make a minor clarification about thedas2007-12-141-5/+10
| | | | return value of sqrt.
* 1. Add function pthread_mutex_setspinloops_np to turn a mutex's spindavidxu2007-12-144-29/+118
| | | | | | | | loop count. 2. Add function pthread_mutex_setyieldloops_np to turn a mutex's yield loop count. 3. Make environment variables PTHREAD_SPINLOOPS and PTHREAD_YIELDLOOPS to be only used for turnning PTHREAD_MUTEX_ADAPTIVE_NP mutex.
* Typo in previous commitdas2007-12-141-2/+2
|
* Symbol.map additions for carg and cargf. (They're in C99, so I didn'tdas2007-12-141-0/+2
| | | | add a new version for them.)
* Limit total hardware playback channels to just 1. The reliability ofariff2007-12-141-3/+12
| | | | | | | | | | it's multi DAC / playback channels is not that good. Enabling vchans make the bug more visible since playback allocation will look for possible free hardware channels first (i.e: the next DAC, the very first has been consumed by vchan mixer) which in this case has been proven faulty. Tested by: Dominic Fandrey <LoN_Kamikaze at gmx dot de> URL: http://lists.freebsd.org/pipermail/freebsd-stable/2007-December/039022.html
* Add my all-time favorite quote, from one of my all-time favorite people.wes2007-12-141-0/+3
|
* Add speaker/headphone controls for HP Compaq DC7700 Small Form Factor PCariff2007-12-131-1/+13
| | | | | | @ ALC262. Submitted by: Carlos A. M. dos Santos <unixmania at gmail dot com>
* nid 28 for Acer @ ALC268 should be identified as analog CD input pin,ariff2007-12-131-0/+12
| | | | | though it doesn't provides proper (sane, valid, usable, etc) analog CD playback due to its stripped down nature.
* Implement a workaround of the datacorruption problem on serverworks HT1000 ↵sos2007-12-134-93/+233
| | | | | | | | | chipsets. The HT1000 DMA engine seems to not always like 64K transfers and sometimes barfs data all over memory leading to instant chrash and burn. Also fix 48bit adressing issues, apparently newer chips needs 16bit writes and not the usual fifo thing. HW donated by: Travis Mikalson at TerraNovaNet
* Add the -H, -h and -P flags to vmstat. -P causes per-cpu output ofpeter2007-12-133-20/+207
| | | | | | user/system/idle stats. -h feeds the memory column through humanize_number() to reduce the amount of column overflowing. -H turns this off. -h is turned on by default if stdout is a tty.
* use ATH environment variable (when set) as the default interface namesam2007-12-132-2/+12
|
* Some overdue tlc:sam2007-12-133-164/+191
| | | | | | | | | | o push include paths to the Makefile o use the AFTER trick to simplify adding new items o prepare stat blocks for additional data o align values for verbose output o fillin some missing stats MFC after: 1 week
* Fix error in previous commit - the style fix changed flag name withoutkmacy2007-12-131-1/+1
| | | | changing references to the flag
* update channel flag defs to match _ieee80211.h so cpp doesn't complainsam2007-12-131-16/+13
| | | | | | about redefinitions MFC after: 1 week
* Only pass paths to directories or config files that exist for ldconfig forjhb2007-12-131-2/+8
| | | | | | 32-bit binaries. MFC after: 3 days
* BSDMAKE isn't really needed and was removed, so remove hereimp2007-12-131-10/+0
|
* Update posix_openpt(3) to handle 512 ptys. This was missed in the earlierjhb2007-12-131-2/+2
| | | | | | pty(4) changes. MFC after: 3 days
* We don't need to invent BSDMAKE. ${MAKE} is sufficient.imp2007-12-131-3/+2
| | | | Submitted by: jmallet@
* s/C90/C99/das2007-12-121-1/+1
|
* Add a "STANDARDS" section.das2007-12-121-0/+9
|
* Implement carg(3) and cargf(3).das2007-12-126-9/+122
| | | | Rotting in an old src tree since: March 2005
* Fix style issues with initial TCP offload commitkmacy2007-12-125-202/+217
| | | | | Requested by: rwatson Submitted by: rwatson
* add interface for allowing consumers to register for ARP updates,kmacy2007-12-123-5/+28
| | | | | | redirects, and path MTU changes Reviewed by: silby
* Add interface for tcp offload to syncache:kmacy2007-12-122-15/+50
| | | | | | | | | - make neccessary changes to release offload resources when a syncache entry is removed before connection establishment - disable checks for offloaded connection where insufficient information is available Reviewed by: silby
* Disallow the legacy USB circuit to generate an SMI# via an ICHrpaulo2007-12-122-0/+50
| | | | | | | | | | | register (MacBooks only). This allows MacBooks to boot in SMP mode without any trick and solves the timer problems with HZ=1000. MFC after: 1 week Reviewed by: njl (mentor), jhb Approved by: njl (mentor), jhb
* Add driver independent interface to offload active established TCP connectionskmacy2007-12-126-1/+463
| | | | Reviewed by: silby
* Increase control channel xmit queue to 128 packets.mav2007-12-121-1/+1
| | | | | | Previous value 16 was too small for real LAC as temporal activity spike cound easily overflow queue demanding tunnel disconnection due to possible state inconsistency.
* Remove license clause 3 to agree with the now-standard BSD license.wes2007-12-123-14/+0
| | | | Prompted by: Glenn Halperin, Symbian Software
* Disable AC97 microphone channel. Due to the channel allocation priorityariff2007-12-121-1/+6
| | | | | | | | | | that favours true hardware channel, the first instance of recording request will grab this channel (the first channel is being used as vchan master). In many cases, it is not really work as intended and give false impression of broken recording. PR: kern/118546 MFC after: 3 days
* Regen.ru2007-12-121-23/+38
|
* Fix markup nits.ru2007-12-125-5/+15
|
* Option depencies are (again) tracked automatically.ru2007-12-121-5/+0
|
* - Fix setting of MK_GSSAPI option by bsd.own.mk; its value shouldru2007-12-125-14/+39
| | | | | | | | | | | default to the value of MK_KERBEROS unless set explicitly by WITH_GSSAPI/WITHOUT_GSSAPI. (This introduces another type of MK_* variables which itself is questionable.) - Teach tools/build/options/makeman script that generates the src.conf(5) manpage about the new type of MK_* variables. - Fix broken logic in lib/Makefile.
* Implementing 'fallback' nsswitch source. 'fallback' source is usedbushman2007-12-124-117/+223
| | | | | | | | | | | | when particular function can't be found in nsswitch-module. For example, getgrouplist(3) will use module-supplied 'getgroupmembership' function (which can work in an optimal way for such source as LDAP) and will fall back to the stanard iterate-through-all-groups implementation otherwise. PR: ports/114655 Submitted by: Michael Hanselmann <freebsd AT hansmi DOT ch> Reviewed by: brooks (mentor)
* Remove 3rd clause of licensephantom2007-12-121-4/+0
| | | | Per request of: glenn halperin at symbian.com
* Remove spurious timestamp check. RFC 1323 explicitly states that timestamps MAYkmacy2007-12-121-17/+1
| | | | be transmitted if negotiated.
OpenPOWER on IntegriCloud