summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Add the 'hptrr' driver for supporting the following Highpoint RocketRAIDscottl2007-12-1523-5/+27266
| | | | | | | | | | | | | | | | | | | 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
|
* style.Makefile(5)obrien2007-12-141-1/+1
|
* Remove unused file.marcel2007-12-141-110/+0
|
* Minor style consistency improvements.rwatson2007-12-141-2/+1
|
* 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 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
* 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
* 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.
* 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
* Remove spurious timestamp check. RFC 1323 explicitly states that timestamps MAYkmacy2007-12-121-17/+1
| | | | be transmitted if negotiated.
* Rewrite the DMA code paths from being an impenitrable maze of special casesscottl2007-12-124-436/+260
| | | | | to a much saner and simplier unified code path. Along the way, fix various CAM nits and bugs so that the passthrough works correctly for all cases.
* Simplify vm_page_free_toq().alc2007-12-111-5/+3
|
* There's no need to call pmap_vac_me_harder() in pmap_protect(), as itcognet2007-12-111-1/+0
| | | | | | already happened in pmap_modify_pv(). Submitted by: Mark Tinguely <tinguely AT casselton DOT net>
* Fix calculation of descriptor tag checksums. According to ECMA-167, Part 4,markus2007-12-111-1/+1
| | | | | | | | | | 7.2.3, bytes 0-3 and 5-15 are used to calculate the checksum of a descriptor tag. PR: kern/90521 Submitted by: Björn König <bkoenig@cs.tu-berlin.de> Reviewed by: scottl Approved by: emax (mentor)
* Fix LOR of thread lock and umtx's priority propagation mutex duedavidxu2007-12-113-17/+17
| | | | | | to the reworking of scheduler lock. MFC: after 3 days
* Add quirks for Netac Onlydisk 2000 USB disk.davidxu2007-12-113-0/+9
|
* Bah, remove last vestiges of some statfs conversion fixes that aren't quitejhb2007-12-101-22/+10
| | | | | | ready for CVS yet that snuck into 1.68. Pointy hat to: jhb
* Clean up VCS Ids.obrien2007-12-1045-134/+177
|
* Wake On Lan (WOL) infrastructuresam2007-12-101-2/+6
| | | | | Submitted by: Stefan Sperling <stsp@stsp.name> Reviewed by: brooks
* Decode as many or as few partition entries as the label claims theremarcel2007-12-091-1/+1
| | | | are. We have already checked it against the caller provided maxpart.
* Fix a bug in the add verb, where we failed to keep the listmarcel2007-12-091-2/+2
| | | | | of partitions in index-order. This is assumed by the APM, MBR and BSD partitioning schemes.
* Eliminate compilation warnings due to the use of non-static inlinesalc2007-12-095-8/+14
| | | | | | | through the introduction and use of the __gnu89_inline attribute. Submitted by: bde (i386) MFC after: 3 days
* Fix spelling.thompsa2007-12-092-8/+8
| | | | Obtained from: OpenBSD
* sc->ndis_tq variable is only initialized when a driver module is for wirelessthompsa2007-12-091-2/+4
| | | | | | | NICs. PR: kern/118439 Submitted by: Weongyo Jeong
* Fix an incorrect FreeBSD version test.scottl2007-12-091-1/+1
|
* Modify locking so that a single version of the driver src can be used on 6.xscottl2007-12-091-5/+22
| | | | and beyond.
* Check for P_WEXIT before PHOLD() on a process in kstack and vm queryrwatson2007-12-091-0/+8
| | | | | | sysctls, as PHOLD() asserts !P_WEXIT. Reported by: Michael Plass <mfp49_freebsd at plass-family dot net>
* If we are walking the IPv6 header chain and we hit an IPPROTO_NONEdwmalone2007-12-091-3/+6
| | | | | | | | | | | | | header, then don't try to pullup anything, because there is no next header if we hit IPPROTO_NONE. Set ulp to a non-NULL value so the search for an upper layer header terinates. This is based on Pekka's diagnosis, but I chose a simpler fix. PR: 115261 Submitted by: Pekka Savola <pekkas@netcore.fi> Reviewed by: mlaier MFC after: 2 weeks
* Internal partitions can not be deleted or modified.marcel2007-12-081-2/+2
|
* Skip internal partitions in the check for (user) partitions formarcel2007-12-081-1/+1
| | | | | the destroy command. Previously a freshly created BSD disklabel could not be destroyed because of the internal partition.
* Use 1GB virtual pages to implement the direct map on architectures thatalc2007-12-081-13/+24
| | | | | | | | support this feature. Wrap a nearby line that is too long. MFC after: 6 weeks
* Recognize architectural support for 1GB virtual pages.alc2007-12-082-1/+2
| | | | MFC after: 6 weeks
* Support new ARC120x family of controllers. Many thanks for Areca's continuedscottl2007-12-082-617/+1635
| | | | | | support of FreeBSD. Submitted by: Erich Chen @ Areca
* Add support for FS_ZFS.marcel2007-12-081-0/+7
|
* Add a file system type for ZFS (FS_ZFS).marcel2007-12-081-0/+2
|
* Sync with NetBSD rev 1.101.marcel2007-12-081-2/+14
| | | | This also fixes fstypenames being short an entry.
* Grrr, remove an unused variable missed in the last commit.scottl2007-12-081-1/+0
|
OpenPOWER on IntegriCloud