summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Remove two boot printfs generated by Audit to announce it's presence,rwatson2007-07-012-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | and replace with software-testable sysctl node (security.audit) that can be used to detect kernel audit support. Obtained from: TrustedBSD Project Approved by: re (kensmith)
* | | The wicontrol(8) manpage is obsolete too.thompsa2007-07-011-0/+1
| | | | | | | | | | | | | | | Pointed out by: Pawel Worach Approved by: re (rwatson)
* | | After talking with njl@, change this wildcard entry to be a bit less wild.imp2007-07-011-1/+1
| | | | | | | | | | | | Approved by: re (blanket)
* | | - Fix input/microphone support for ASUS A8N-VMCSM series.ariff2007-07-012-39/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: Simon Schubert <corecode@fs.ei.tum.de> - Defer flushing unsolicited response into taskqueue thread rather than handle it directly in interrupt handler, since few of its operations (like measuring/calibrating jack impedance) are quite expensive. - Misc. debugging cleanups. Tested by: joel Approved by: re (hrs) MFC after: 3 days
* | | Fix no-sound issues with ASUS A9T notebook.ariff2007-07-011-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note: The offending quirk should have been made model/codec specific, but since there were no records / log which model requires it, the quirk logic had to be inverted (blacklist instead of whitelist). Tested by: Arkadiy Dudevitch <dudevitch@englerllc.com> Approved by: re (hrs) MFC after: 3 days
* | | Fix a dangling netinet6 to netipsec transition for SCTP include files.gnn2007-07-011-1/+1
| | | | | | | | | | | | Approved by: re
* | | Remove a dangling file reference that is no longer needed with the removalgnn2007-07-011-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | of KAME IPsec Reviewed by: bz Approved by: re Supported by: Secure Computing
* | | As part of KAME IPsec removal:bz2007-07-011-20/+19
| | | | | | | | | | | | | | | | | | | | | change the date to today instead of leaving the date when the patch was done. Move the block to the top. Approved by: re (kensmith)
* | | Follow on cleanup and removal of two unnecessary include files.gnn2007-07-012-81/+0
| | | | | | | | | | | | | | | | | | Reviewed by: bz Approved by: re Supported by: Secure Computing
* | | Commit IPv6 support for FAST_IPSEC to the tree.gnn2007-07-0138-133/+76
| | | | | | | | | | | | | | | | | | | | | | | | This commit includes all remaining changes for the time being including user space updates. Submitted by: bz Approved by: re
* | | Switch to "-O1 -pipe" as cross-build compatible gcc workaround.ache2007-07-011-1/+1
| | | | | | | | | | | | | | | | | | | | | "Looks like Alexander chimed in with "I'm comfortable with that until we can import a fixed GCC"." Approved by: re (kensmith)
* | | Commit IPv6 support for FAST_IPSEC to the tree.gnn2007-07-0161-2373/+798
| | | | | | | | | | | | | | | | | | | | | | | | | | | This commit includes only the kernel files, the rest of the files will follow in a second commit. Reviewed by: bz Approved by: re Supported by: Secure Computing
* | | Remove wicontrol(8) from the base system. Using wicontrol to configure anthompsa2007-07-0114-1860/+7
| | | | | | | | | | | | | | | | | | | | | interface has been deprecated since 5.1, wi(4) wireless interfaces are managed via the net80211 stack and ifconfig. Approved by: re (rwatson)
* | | The driver will also first appear in 6.3. While here, fix somebrueffer2007-07-011-5/+7
| | | | | | | | | | | | | | | | | | | | | grammar issues and capitalize Jumbo Frames. Approved by: re (blanket) MFC after: 3 days
* | | Add my ports heritage.obrien2007-07-011-0/+9
| | | | | | | | | | | | Approved by: re(KEN)
* | | Pages that do belong to an object and page queue can now be freed withoutalc2007-07-012-20/+16
| | | | | | | | | | | | | | | | | | | | | | | | holding the page queues lock. Thus, the page table pages released by pmap_remove() and pmap_remove_pages() can be freed after the page queues lock is released. Approved by: re (kensmith)
* | | Move the XCHANNEL radiotap definition to a free slot. NetBSD defined somethompsa2007-07-011-1/+2
| | | | | | | | | | | | | | | | | | | | | additional values causing a conflict. Submitted by: sam Approved by: re (kensmith)
* | | - Use rufetchcalc() rather than calcru() in ttyinfo so that we getjeff2007-07-011-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | correct system and user time stats. Approved by: re Reported by: kris Discussed with: Attilio
* | | Fix scanning issues since the new net80211 code went inthompsa2007-06-303-20/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - provide dummy routines for ic_scan_curchan and ic_scan_mindwell, we do not support those operations. - add ieee80211_scan_done() to tell the scanning module that all channels have been scanned. - pass IEEE80211_S_SCAN state off to net80211 so it can initiate scanning - fix overflow in the rates array - scale the rate value passed back from the firmware scan to the units that net80211 uses. Submitted by: Token Reviewed by: sam, avatar Approved by: re (kensmith)
* | | Change the channel number in the scan results struct to be a pointer to thethompsa2007-06-306-11/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | operating channel and use this in the scan cache rather than directly using ic_curchan. Some firmware cards can only do a full scan and so ic_curchan does not have the correct value. Also add IEEE80211_CHAN2IEEE to directly dereference ic_ieee from the channel to be used in the fast path. Reviewed by: sam, sephe Approved by: re (kensmith)
* | | Fix the channel reporting when the card is associated. The channel array usedthompsa2007-06-301-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | to be index by IEEE channel number but that is no longer the case and it needs to be searched for. Submitted by: avatar Reviewed by: sam Approved by: re (kensmith)
* | | Fix two more PRs:imp2007-06-305-7/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (1) Add size parameter to usbd_get_string() (2) Properly limit speed when a full speed hub is plugged into a high speed hub. Submitted by: Hans Petter Selasky PR: 80773, 79725 Approved by: re@ (kensmith)
* | | Additional devices from NetBSD and OpenBSD. This includes devices notimp2007-06-302-24/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | yet supported by this driver. Support will be committed soon, or a filter on all the 'newer' devices will be installed before the release. Approved by: re@ (blanket) Obtained from: NetBSD, OpenBSD Small Furry Animals by: Pink Floyd
* | | Add support for HTTP/1.0 Persistent Connections to phttpget. Requests arecperciva2007-06-301-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be marked as HTTP/1.1 but "Connection: Keep-Alive" is added; this convinces HTTP/1.0 servers and proxies to hold the TCP connection open despite not being able to use HTTP pipelining. This dramatically cuts down on the number of TCP connections (and thus port numbers) used by portsnap when talking to an HTTP/1.0 proxy (e.g., squid), and has the side benefit of improving performance in those cases. Tested by: simon Approved by: re (kensmith) MFC After: 1 week
* | | My previous commit introduced a spurious warning for the case where anjl2007-06-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | switch (i.e. lid) is set to have an action of NONE. This is not an invalid state, so silently return. This fixes the warning: "acpi: request to enter state S6 failed (err 22)" Approved by: re
* | | Quirk for WD Mybook. Seems they do not like serial number queries.imp2007-06-301-0/+12
| | | | | | | | | | | | | | | | | | Submitted by: Jason Harris PR: 107495 Approved by: re@ (blanket)
* | | umass quirk: Samsung YP-U2 USB MP3/Ogg Playerimp2007-06-302-0/+5
| | | | | | | | | | | | | | | | | | Submitted by: Ulrich Spoerlein PR: 114154 Approved by: re@ (blanket)
* | | Quirk for ChipsBnk usb stickimp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | Submitted by: Mark Andrews PR: 103702 Approved by: re@ (blanket)
* | | Add quirk for JoyFly 128mb USB Flash Driveimp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | submitted by: Toni Schmidbauer PR: 96133 Approved by: re@ (blanket)
* | | Note the change in /dev nameimp2007-06-301-0/+9
| | | | | | | | | | | | | | | | | | Submitted By: Kay Abendroth PR: usb/106070 Approved by: re (blanket)
* | | Capitalize a few terms.brueffer2007-06-301-4/+4
| | | | | | | | | | | | Approved by: re (blanket)
* | | Merge fixes back from heimdal.dfr2007-06-305-63/+154
| | | | | | | | | | | | Approved by: re (kensmith)
* | | Autogenerate hardware notes for nfe(4) and nxge(4).brueffer2007-06-302-0/+6
| | | | | | | | | | | | Approved by: re (blanket)
* | | General cleanup.brueffer2007-06-301-15/+26
| | | | | | | | | | | | Approved by: re (blanket)
* | | quirk for I/O Magic USB flash drive "Giga Bank"imp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | Submitted by: Jeff Anton PR: 108810 Approved by: re@ (blanket)
* | | Samsung MP0402H quirkimp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | Submitted by: Gipsy<wint3r@securimail.com> PR: 108427 Approved by: re@ (blanket)
* | | uhid.4: correct structure field names to match dev/usb/usb.himp2007-06-301-4/+4
| | | | | | | | | | | | | | | | | | Submitted by: Dmitry Marakasov PR: 101757 Approved by: re (blanket)
* | | Add support for JNC MP3 Playerimp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | Submitted by: User & <dhenin@cypries.cyclopes.org> PR: 94439 Approved by: re (blanket)
* | | quirk for CENTURY EX35QUAT disk enclosureimp2007-06-302-23/+31
| | | | | | | | | | | | | | | | | | Submitted by: Daniel Hartmeier PR: 94132 Approved by: re (blanket)
* | | Fix cheapy Myson USB-IDE adapterimp2007-06-302-0/+7
| | | | | | | | | | | | | | | | | | Submitted by: Arno J. Klaassen PR: 88939 Approved by: re@ (blanket)
* | | fix ia64 buildsam2007-06-301-2/+10
| | | | | | | | | | | | Approved by: re (followup to previous commit)
* | | Philips USB Key Audio KEY013imp2007-06-301-0/+8
| | | | | | | | | | | | | | | | | | Submitted by: Arnoud Engelfriet PR: 68412 Approved by: re (blanket)
* | | Add support using an alternate table file to usbhidaction(1).imp2007-06-302-3/+10
| | | | | | | | | | | | | | | | | | Submitted by: Michael Haro PR: 61234 Approved by: re (bmah)
* | | Expand the transform API to allow transports to return 'success' forimp2007-06-301-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | the command. Make UFI devices return 'success' when asked to do a SYNC_CACHE. There's no support for write caching in the UFI spec, so this is the most appropriate action to undertake. Reviewed by: scottl Approved by: re@ (blanket)
* | | Reduce diffs to OtherBSD by using usb_lookup. No functional changes.imp2007-06-301-15/+4
| | | | | | | | | | | | Approved by: re@ (Blanket)
* | | Remove duplicate USBDEVUNIT #defineimp2007-06-301-1/+0
| | | | | | | | | | | | Approved by: re@ (blanket)
* | | Add definition for UIPROTO_MOUSE.imp2007-06-301-0/+1
| | | | | | | | | | | | Approved by: re@
* | | Update to merged names for things. No functional changes.imp2007-06-301-2/+2
| | | | | | | | | | | | Approved by: re (blanket)
* | | Neterion Xframe 10GbE Server/Storage adapter driver.sam2007-06-2954-0/+37517
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The nxge driver provides support for Neterion Xframe-I and Xframe-II adapters. The driver supports TCP Segmentation Offload (TSO/LSO), Jumbo frames (5 buffer mode), Header separation (2 and 3 Receive buffer modes), VLAN, and Promiscuous mode. Submitted by: Neterion Reviewed by: rwatson Approved by: re (kensmith)
* | | Add support for various MS Wirless usb mice. the patch is fromimp2007-06-294-83/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | Hellmuth with some refinements by myself and flz@. It works for me with my non-MS mice, so nothing should be broken by it. Submitted by: Hellmuth Michaelis PR: 90162 Approved by: re (blanket)
OpenPOWER on IntegriCloud