summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Change the commented msgs examples in profile/csh.login from -f to -q.jilles2010-05-152-4/+4
| | | | | | | | | | | Starting something that wants input on login seems strange and can be dangerous. In some configurations, causing output can be bad, but it is not as dangerous. I do not expect this msgs invocation to be uncommented often. PR: conf/96015 MFC after: 4 days
* Apply a patch that has been lingering in my inbox for far too long:phk2010-05-151-4/+13
| | | | | | | | | | | | | | | | | | | | On a soekris Net5501, if you do a watchdog -t 16, followed by a watchdog -t 0 to disable the watchdog, and then after some time (16s) re-enable the watchdog the box reboots immediatly. This prevents also to stop and restart watchdogd(8). This is because when you stop the watchdog, the timer is not stoped, only the hard reset is disabled. So when the timer has elapsed, the C2 event of the timer is set. But when the hard reset is re-enabled, the event is not cleared and the box reboots. The attached patch stops and resets the counter when the watchdog is disabled and do not disable the hard reset of the timer (if the timer has elapsed it's too late). Submitted by: Patrick Lamaizière
* Do not attempt to render a logrecord with length byte, until we havephk2010-05-151-0/+2
| | | | decompressed all the bytes required.
* Small changes preparing for MFC, need to conditionalizejfv2010-05-143-2/+6
| | | | | the buf_ring_free call, and lem is missing the WOL change put into em.
* A few minor fixes:jfv2010-05-141-8/+11
| | | | | | | | | | - add a moderation value to the Link vector - allow disabling HW RSC on the 82599 if LRO is not enabled. - correct error in the stats code - change optic type on the 82598 DA device Thanks to Andrew Boyer for the changes.
* Yet another potential dereference of a dead provider.mjacob2010-05-141-1/+1
| | | | | Sponsored by: Panasas MFC after: 1 week
* Fix an issue with the dynamic pcpu/vnet data allocators.bz2010-05-142-2/+2
| | | | | | | | | | | | | | | We cannot expect that modspace is the last entry in the linker set and thus that modspace + possible extra space up to PAGE_SIZE would be contiguous. For the moment do not support more than *_MODMIN space and ignore the extra space (*). (*) We know how to get it back but it'll need testing. Discussed with: jeff, rwatson (briefly) Reviewed by: jeff Sponsored by: The FreeBSD Foundation Sponsored by: CK Software GmbH MFC after: 4 days
* - Add versioned symbols to liblzmadelphij2010-05-144-2/+209
| | | | | | | - Use default SHLIB_MAJOR. Approved by: mm X-MFC with: lzma library MFC
* Document the led(4) interface to the identification LEDs.marius2010-05-142-2/+42
| | | | MFC after: 3 days
* - Enable DMA write parity error interrupts on Schizo with a workingmarius2010-05-143-41/+91
| | | | | | | | | | | | implementation. - Revert the Sun Fire V890 WAR of r205254. Instead let schizo_pci_bus() only panic in case of fatal errors as the interrupt triggered by the error the firmware of these and also Sun Fire 280R with version 7 Schizo caused may happen as late as using the HBA and not only prior to touching the PCI bus (in the former case the actual error still is fatal but we clear it before touching the PCI bus). While at it count and export non-fatal error interrupts via sysctl(9). - Remove unnecessary locking from schizo_ue().
* Remove duplicatedougb2010-05-141-1/+0
|
* Hide the creation and population of the temprootdougb2010-05-141-5/+5
|
* If controller received bad frames make sure to update newly addedyongari2010-05-141-2/+7
| | | | | | | | | | | | | | | | | | | RFA. Also drop frames that have either CRC error or alignment error. Normally bad frames are not received at all. But controllers running in promiscuous mode will receive bad frames. 82557 will also receive bad frames to receive VLAN oversized frames. While I'm here mark RNR condition if driver happen to see RNR in RFA status and restart RU to receive frames again. Because driver checks all received frames in RX loop, RNR condition could be set in the middle of RX processing. Just relying on RNR interrupt was not enough. This change fixes "Memory modified after free" issue when fxp(4) is running as a member of if_bridge(4). Tested by: Larry Baird <lab <> gta dot com> MFC after: 5 days
* Dont' allow dma map load deferring. fxp(4) is not able to handleyongari2010-05-141-1/+1
| | | | EINPROGRESS.
* Make sure to check that the active provider pointer points to something beforemjacob2010-05-141-1/+1
| | | | | | | dereferencing the pointer. Sponsored by: Pansas MFC after: 1 week
* Controller updates RFA via DMA so driver needs synchronization.yongari2010-05-141-2/+2
| | | | Add missing BUS_DMASYNC_POSTWRITE and BUS_DMASYNC_PREREAD.
* Document the 'short preamble' capability for 802.11bg.bz2010-05-141-1/+9
| | | | | Reviewed by: sam MFC after: 4 days
* Sync apmd(8) with DragonflyBSD, bringing WARNS to 3uqs2010-05-146-40/+68
| | | | Reviewed by: ed (partial, long time ago)
* fsirand(8): make WARNS=3 cleanuqs2010-05-142-18/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Drop bogus quad_t cast for di_gen, it is a 32bit type - Print di_gen with leading zeros, to get consistent output Before this change, amd64 would print: ino 18 gen 616ca2bd ino 19 gen ffffffff95c2a3ff ino 20 gen 25c3a3d5 ino 21 gen 8dc1472 ino 22 gen 3797056b ino 23 gen 1d47853a ino 24 gen ffffffff82d26995 After the change ino 18 gen 616ca2bd ino 19 gen 95c2a3ff ino 20 gen 25c3a3d5 ino 21 gen 08dc1472 ino 22 gen 3797056b ino 23 gen 1d47853a ino 24 gen 82d26995 PR: bin/139994 (sort of) Reviewed by: mckusick
* Remove trailing white space. No functional changes.dougb2010-05-1424-62/+62
|
* Wording fixes.brueffer2010-05-141-2/+2
| | | | | | PR: 143454 Submitted by: Warren Block <wblock@wonkity.com> MFC after: 3 days
* List /var/cron/tabs in FILES and add descriptions for the other entries.brueffer2010-05-141-1/+5
| | | | | | | PR: 145912 Submitted by: Julian H. Stacey <jhs@berklix.com> Obtained from: OpenBSD MFC after: 1 week
* Mention LSI Logic FC949E.brueffer2010-05-141-1/+2
| | | | | | PR: 110359 Submitted by: Vivek Khera <vivek@khera.org> MFC after: 3 days
* Catchup with new prototype for db_printf().cognet2010-05-141-1/+1
|
* Fix ZIL-related panic on zfs rollback.mm2010-05-135-61/+44
| | | | | | | | OpenSolaris onnv-revision: 8746:e1d96ca6808c Approved by: pjd, delphij (mentor) Obtained from: OpenSolaris (Bug ID 6796377) MCF after: 1 week
* Allow the USB_REQ_DEBUG to be enabled in the kernel conf.thompsa2010-05-131-0/+1
| | | | Requested by: HPS
* Import OpenSolaris revision 7837:001de5627df3mm2010-05-1323-1580/+712
| | | | | | | | | | | | | | | | | | | It includes the following changes: - parallel reads in traversal code (Bug ID 6333409) - faster traversal for zfs send (Bug ID 6418042) - traversal code cleanup (Bug ID 6725675) - fix for two scrub related bugs (Bug ID 6729696, 6730101) - fix assertion in dbuf_verify (Bug ID 6752226) - fix panic during zfs send with i/o errors (Bug ID 6577985) - replace P2CROSS with P2BOUNDARY (Bug ID 6725680) List of OpenSolaris Bug IDs: 6333409, 6418042, 6757112, 6725668, 6725675, 6725680, 6725698, 6729696, 6730101, 6752226, 6577985, 6755042 Approved by: pjd, delphij (mentor) Obtained from: OpenSolaris (multiple Bug IDs) MFC after: 1 week
* do a proper fixkmacy2010-05-131-1/+1
| | | | | | Pointed out by: np@ MFC after: 3 days
* fix compile error on some builds by doing the equivalent ofkmacy2010-05-131-1/+1
| | | | | | an "extern VNET_DEFINE" without "__used" MFC after: 3 days
* Increase the target buffer for performing NGM_ASCII2BINARY conversionzec2010-05-131-1/+1
| | | | | | | | | | | from 2000 bytes to 20 Kbytes, which now matches the buffer size used for NGM_BINARY2ASCII conversions. The aim of this change is to allow for bigger binary structures to be managed via netgraph ASCII messages, until we come up with an API improvement which would get rid of such arbitrary hardcoded limits. MFC after: 3 days
* Update authors and history.trasz2010-05-131-1/+6
| | | | MFC after: 1 week
* Make branding less intrusive - in acl_set(3), in case ACL brandtrasz2010-05-131-0/+3
| | | | | | is ACL_BRAND_UNKNOWN, do what the programmer says instead of failing. MFC after: 1 week
* Make it possible to actually use NFSv4 permission bits with acl_set_perm(3)trasz2010-05-131-20/+32
| | | | | | | and acl_delete_perm(3). It went undetected, because neither setfacl(1) nor Samba use this routines. D'oh. MFC after: 1 week
* Add missing check to prevent local users from panicing the kernel by tryingtrasz2010-05-131-0/+4
| | | | | | to set malformed ACL. MFC after: 3 days
* mdoc: move remaining sections into consistent orderuqs2010-05-1325-165/+165
| | | | | | | This pertains mostly to FILES, HISTORY, EXIT STATUS and AUTHORS sections. Found by: mdocml lint run Reviewed by: ru
* mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to theuqs2010-05-1383-780/+780
| | | | | | | | | | | bottom of the manpages and order them consistently. GNU groff doesn't care about the ordering, and doesn't even mention CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put them. Found by: mdocml lint run Reviewed by: ru
* Do not use .extern, it is not strictly needed with gas and it is customkib2010-05-131-1/+0
| | | | | | | to omit it. Requested by: bde MFC after: 6 days
* et.4 doesn't have a HARDWARE section. Unbreak the build by manuallybrueffer2010-05-131-1/+2
| | | | describing the supported et(4) chips.
* Use fixed width integer types for parsing the binary hid data.thompsa2010-05-132-6/+9
| | | | | PR: usb/146367 Submitted by: Hans Petter Selasky
* Remove some stray ';'simp2010-05-132-2/+2
| | | | Submitted by: marc balmer
* Fix return values for usb_find_busses() and usb_find_devices(). We should trythompsa2010-05-131-2/+2
| | | | | | | to return the actual number of busses and devices. Reported by: Mike Tancsa Submitted by: Hans Petter Selaksy
* Fix header file compliancy with libusb 1.0 from sourceforge.thompsa2010-05-134-2/+8
| | | | | Reported by: Xiaofan Chen Submitted by: Hans Petter Selasky
* Sync run(4) driver from author's site.thompsa2010-05-134-596/+947
| | | | | Submitted by: Akinori Furukoshi Obtained from: git://gitorious.org/run/run.git
* Reduce diffs to p4.thompsa2010-05-121-24/+163
| | | | | | | Add test code for delaying or failing usb control requests, disabled by default under ifdef USB_REQ_DEBUG. Submitted by: Hans Petter Selasky
* Fix possibly wrong bit masking.thompsa2010-05-121-2/+2
| | | | | Reported by: n_hibma Submitted by: Hans Petter Selasky
* Add new FTDI USB device ID.thompsa2010-05-122-0/+2
| | | | | PR: kern/146483 Submitted by: Andre Albsmeier
* Increase the max ports to 12, 3G devices exist where the ppp endpoint is #9.thompsa2010-05-121-1/+1
| | | | Requested by: n_hibma
* Back out r203140 which was causing problems when the first and the lastthompsa2010-05-121-9/+20
| | | | | | | | | | microframe slot was not in the smask. The problem was that the EHCI driver was then thinking that the transfer was immediately complete in some cases. Which could lead to freeze-like situations, which can be recovered by unplugging the USB device. Reported by: Richard Kolkovich Submitted by: Hans Petter Selasky
* Add missing ifdefs for usb power saving support.thompsa2010-05-121-1/+4
| | | | Submitted by: Hans Petter Selasky
* Support getting signed and unsigned HID data.thompsa2010-05-123-11/+33
| | | | | Submitted by: Alex Deiter Reviewed by: Hans Petter Selaksy
OpenPOWER on IntegriCloud