summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* By popular acclaim, enable "Starting foo:" messages by defaultdougb2009-09-291-1/+1
|
* Special-case "-r X" where X is [0-9.]+ to mean "-r X-RELEASE".cperciva2009-09-291-0/+3
| | | | | Tripped over by: too many people to count MFC after: 1 month
* Fixed markup bugs.ru2009-09-291-7/+12
|
* Add some bits of HDMI/DisplayPort support from later specification updates.mav2009-09-292-13/+100
| | | | | It may be not enough to make them work, but at least should give some information about these beasts.
* The first 96 bytes may not be zeroes. It can contain trivial bootmarcel2009-09-281-5/+5
| | | | | | | | | | | | | code that merely emits an error and waits for a key press before rebooting. The error being that extended partitions are not bootable. The origin is presumed to be Windows 2000; Windows XP does not do this... For now, ignore the first 96 bytes when checking that the EBR is (for the most part) all zeroes. Tested by: Mario Lobo <mlobo@digiart.art.br> MFC after: 1 week
* Fix offset handlingrnoland2009-09-281-7/+7
| | | | MFC after: 1 week
* radeon_family is an enum, so ordering can be important.rnoland2009-09-281-2/+2
| | | | | | sync up with what amd is shipping. MFC after: 1 week
* Fix blit pitch for 4 byte transfers on r600.rnoland2009-09-281-1/+1
| | | | MFC after: 1 week
* R600 doesn't support IRQs yet, so don't try to use them.rnoland2009-09-282-1/+19
| | | | MFC after: 1 week
* For AR8132 fast ethernet controller, do not report 1000baseTyongari2009-09-281-0/+10
| | | | | | | | | | capability to mii(4). Even though AR8132 uses the same model/ revision number of F1 gigabit PHY, the PHY has no ability to establish 1000baseT link. I have no idea why Atheros use the same device/model id for this PHY. With this change atphy(4) does not report 1000baseT media capability and manual 1000baseT configuration is also disabled which is more desirable behavior for 10/100Mbps PHY.
* MFV of tzdata2009nedwin2009-09-282-5/+42
| | | | | Pakistan will go out DST on 1 October. Headsup for changes in Argentina.
* DGE-560SX is now supported.yongari2009-09-281-1/+3
|
* Add DGE-560SX(Yukon XL) to the supported device list. Many thanksyongari2009-09-282-0/+3
| | | | | to "Eugene Perevyazko <john <> dnepro dot net>" who kindly gave remote access to system with DGE-560SX.
* Add workaround for Yukon XL which has hardware bug that can't flushyongari2009-09-281-3/+8
| | | | FIFO.
* Add hack to pass controller specific information to phy driver.yongari2009-09-284-15/+52
| | | | | | | | | Unlike most other PHYs there is no easy way to know which media type the PHY supports on Marvell PHYs. MIIF_HAVEFIBER flags is now passed via bus-specific instance variable of a device. While I'm here add 88E1112 specific work around to set SIGDET polarity low. Many thanks "Eugene Perevyazko <john <> dnepro dot net>" who kindly gave remote access to system with DGE-560SX.
* Fix MIB statistics clear routine. This should fix alignment errors on sparc64.yongari2009-09-281-1/+1
| | | | Reported by: Garrett Damore < gdamore <> opensolaris dot org >
* Some fiber PHY(88E1112) does not seem to set resolved speed soyongari2009-09-281-2/+5
| | | | always assume we've got IFM_1000_SX.
* Don't encode model id twice.yongari2009-09-281-1/+1
| | | | Reported by: Kristof Provost <kristof <> sigsegv dot be>
* It seems some 82559ER controllers do not support Rx checksumyongari2009-09-281-2/+5
| | | | | | | | | offloading. Datasheet said nothing about the limitation of 82559ER except WOL. Explicitly disable Rx checksum offloading for controllers that is known to lack the capability. PR: kern/138135 Tested by: Gooderum, Mark < mgooderum <> websense dot com >
* Remove unnecessary device reinitialization.yongari2009-09-281-2/+14
|
* Set the prison in NFS anon and GSS SVC creds (as I indended to in r197581).jamie2009-09-281-0/+2
| | | | Reviewed by: marcel
* Back out r197581, which replaced this file witk sys/kern/vfs_export.c.jamie2009-09-281-369/+1363
| | | | | | | | Who knew that "svn export" was an actual command, or that I would have vfs_export.c stuck in my mind deep enough to type "export" instead of "commit"? Pointy Hat to: jamie
* Set the prison in NFS anon and GSS SVC creds.jamie2009-09-282-1363/+374
| | | | | Reviewed by: marcel MFC after: 3 days
* Temporarily disable the use of 1GB page mappings by the direct map. Therealc2009-09-281-2/+2
| | | | | | | | | | | | are currently two problems with the use of 1GB page mappings by the direct map. First, at least one device driver uses pmap_extract() rather than DMAP_TO_PHYS() to translate a direct map address to a physical address. Unfortunately, neither pmap_extract() nor pmap_kextract() yet support 1GB page mappings. Second, pmap_bootstrap() needs to interrogate the MTRRs to ensure that a 1GB page mapping doesn't span two MTRRs of different types. Reported and tested by: Daniel O'Connor MFC after: 3 days
* Add two new fcntls to enable/disable read-ahead:delphij2009-09-284-3/+71
| | | | | | | | | | | | | | | | | | | | - F_READAHEAD: specify the amount for sequential access. The amount is specified in bytes and is rounded up to nearest block size. - F_RDAHEAD: Darwin compatible version that use 128KB as the sequential access size. A third argument of zero disables the read-ahead behavior. Please note that the read-ahead amount is also constrainted by sysctl variable, vfs.read_max, which may need to be raised in order to better utilize this feature. Thanks Igor Sysoev for proposing the feature and submitting the original version, and kib@ for his valuable comments. Submitted by: Igor Sysoev <is rambler-co ru> Reviewed by: kib@ MFC after: 1 month
* Use correct sizeof() object for klist 'list'. Currently, struct klistdelphij2009-09-281-4/+4
| | | | | | | | | contained only SLIST_HEAD as its member, thus sizeof(struct klist) would equal to sizeof(struct klist *), so this change makes the code more correct in terms of semantics, but should be a no-op to compiler at this time. Reported by: MQ <antinvidia at gmail com>
* Fixed a markup bug.ru2009-09-281-1/+1
|
* Add back endpoint swap detection that was disabled in an earlier driverthompsa2009-09-281-10/+33
| | | | | | conversion. Submitted by: Hans Petter Selasky
* Add new FTDI IDs.thompsa2009-09-281-0/+3
| | | | Submitted by: Maks Verver, Arrigo Marchiori
* Use a 2 clause BSD-style license instead of stating the code as publicdelphij2009-09-282-4/+49
| | | | domain, as requested by core@ and reviewed by the author.
* Add experimental support for usb serial console and polled mode during DDB.thompsa2009-09-2818-8/+445
| | | | Submitted by: Hans Petter Selasky
* Add a config number quirk for the ELSA_MODEM1thompsa2009-09-281-0/+1
| | | | Submitted by: Stefan Bethke
* add more device IDsthompsa2009-09-281-0/+3
| | | | | Reported by: Mike Tancsa Submitted by: Hans Petter Selasky
* Allow setting of MAC address for AXE based ethernet adapters.thompsa2009-09-281-4/+5
| | | | Submitted by: yongari
* Increase the rx buffer size to 16384 bytes, this increases RX performance fromthompsa2009-09-281-29/+26
| | | | | | 50Mbps to 220Mbps on PLANEX GU-1000T. Submitted by: yongari
* - Remove SAMSUNG_YP_U2 now that it is in the cam layerthompsa2009-09-281-4/+4
| | | | | | - Add quirk from Tobias Grosser for Western Mypassword Submitted by: Hans Petter Selasky
* MFp4thompsa2009-09-281-0/+10
| | | | Add new usbdev entries for Marvell, FTDI, Option and Western.
* Add basic support for USB Network Control Model (NCM) v1.0 to if_cdce.c.thompsa2009-09-284-29/+697
| | | | | | http://www.usb.org/developers/devclass_docs/NCM10.zip Submitted by: Hans Petter Selasky
* Add extra safety locking when clobbering xfer->flags_int.started in start andthompsa2009-09-281-7/+21
| | | | | | | stop functions, because xfer->flags_int is also updated by the USB controller, under the controller lock. Submitted by: Hans Petter Selasky
* Correct buffer sizes used so that they match. The old code could give thethompsa2009-09-281-2/+3
| | | | | | | impression that a overflow situation existed but was not possible. Reported by: kib Submitted by: Hans Petter Selasky
* Static'ify internal methods and use prototype.delphij2009-09-281-20/+20
|
* Add support for USB language selection.thompsa2009-09-282-22/+68
| | | | | | PR: usb/138563 Reported by: Bruce Cran Submitted by: Hans Petter Selasky
* Fix NULL-pointer dereference in usb_endpoint_foreach().thompsa2009-09-281-1/+3
| | | | | PR: usb/138389 Submitted by: Patroklos Argyroudis at census, inc
* Add support for ChipHead 341 serial port adapter.thompsa2009-09-284-3/+561
| | | | Submitted by: Hans Petter Selasky
* Clear all interrupts rather than just SETUP packet.thompsa2009-09-281-2/+2
| | | | Submitted by: Hans Petter Selasky
* Simplify logic around setting EHCI_QH_DTC and expand some htohc32(temp.sc, 0)thompsa2009-09-281-19/+15
| | | | | | statements to zero. Submitted by: Hans Petter Selasky
* Import two PCI quirks from Linuxthompsa2009-09-281-0/+70
| | | | | | | | - Add quirk for ATI SB600 and SB700 to free SMB controller - Correct schedule sleep time to 10us on the VIA ehci controller Reported by: Dorian B<FC>ttner, Andriy Gapon Submitted by: Hans Petter Selasky
* MFp4 @ 168387thompsa2009-09-285-47/+59
| | | | | | | | | | | | | | | | - clean up USB detach logic. There seems to be some problems detaching multiple USB HUBs connected in series from the root. - after this patch the rule is: 1) Always use device_detach() on the USB HUB first. 2) Never just device_delete_child() on the USB HUB, because that function will traverse to all the device leaves and free them first, and then the USB stack will free the devices twice which doesn't work very well. - make sure the did DMA delay gets set after the timeout has elapsed to make logic more clear. There is no functional difference. Submitted by: Hans Petter Selasky
* Silence warning printed by getfsspec(3) when /etc/fstab does not existcperciva2009-09-282-0/+6
| | | | | | | | | | | fstab: /etc/fstab:0: No such file or directory and from dump(8) when setfsent(3) fails due to /etc/fstab not existing: DUMP: Can't open /etc/fstab for dump table information: No such... This makes daily and security periodic runs somewhat cleaner in jails which lack /etc/fstab files. MFC after: 1 month
* Fethch more information from IDENTIFY result.mav2009-09-271-15/+48
|
OpenPOWER on IntegriCloud