Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-08 | cosmetic change for ioctl funtions.. move splnet out from variable declaration. | Brad Smith | |
2008-10-08 | sync | Damien Bergamini | |
2008-10-08 | new PCI ID for Intel WiFi Link 5350. | Damien Bergamini | |
2008-10-08 | better comments | Oleg Safiullin | |
2008-10-08 | Older IT8712F chips have 8-bit watchdog timeout counter. | Oleg Safiullin | |
Use minutes for 16-bit values. | |||
2008-10-08 | As the Option N.V. Globetrotter HSDPA Modem is not compatible | Yojiro Uo | |
with ubsa(4), it is moved to umsm(4). ok jsg@, reported by Daniele Pilenga | |||
2008-10-08 | o chip revision is 4-bit value | Oleg Safiullin | |
o some #define's instead of digits | |||
2008-10-08 | Don't extend amaps beyond what their supposed maximum. This code path is | Artur Grabowski | |
not taken anymore, but it doesn't hurt to be correct. from NetBSD, through mickey in pr 5812 prodded by otto@ | |||
2008-10-08 | Get rid of the second table entry pool (pfr_kentry_pl2); we're already | Ryan Thomas McBride | |
using the default interrupt handler for both, so there's no need to keep table entries created in interrupt context separate. ok henning art | |||
2008-10-08 | uhci(4) at cardbus(4) seems to work (to the same extent that ohci(4) and | Theo de Raadt | |
ehci(4) work; ie. it has the same variety of unplug bugs) | |||
2008-10-07 | Kill a bunch of #ifdef freebsd/netbsd code in *_drv.c. No binary change. | Owain Ainsworth | |
2008-10-07 | Kill the linux-ready negative return codes in ``shared'' code. We handle | Owain Ainsworth | |
them wrong in several cases that i've noticed and Merging when needed is still fairly simple, anyway. This shaves another 500 bytes from an amd64 kernel due to not having to flip the sign on some things. It also stops my eyes bleeding. Tested by a few along with the last diff that went in. | |||
2008-10-07 | unbreak ieeefp emulation code wrt converting double to unsigned | Martynas Venckus | |
long ints for alpha. we've got only one instruction (cvttq) to convert double-t to quadword, and float64_to_int64 did not take into account the unsigned conversions therefore, overflow always occured, and half of the unsigned range (LONG_MAX .. ULONG_MAX) was broken introduce roundAndPackInt64NoOverflow and float64_to_int64_no_overflow for softfloat, that works with unsigned integers as well. note that this will return zero for nan/inf/oflow/uflow, raising exception flag perl is happy now looked over by miod@ tested by naddy@, and by me on nick@'s alpha | |||
2008-10-07 | Move dev->driver over to being a pointer to a const struct, instead of stupidly | Owain Ainsworth | |
filling in a pre-allocated one on each attach. Makes the code a bunch nicer, shrinks a kernel by about 1.5k on amd64, helps with my sanity, and paves way for later changes. Tested by a few for a couple of weeks now. | |||
2008-10-07 | Make sure page 0 is selected when we initialize the PHY. Fixes problems | Mark Kettenis | |
with the eephy(4) that attaches to nfe(4) on machines like the Sun Ultra 40. ok deraadt@ | |||
2008-10-07 | Fix memory leak bug during scope evaluation (now without introducing a bug | Mark Kettenis | |
in evaluation of the Return() operator). Based jordan@'s diff from rev. 1.133. ok jordan@, marco@ | |||
2008-10-07 | If we fail to read the MAC address from the eeprom, fallback to reading | Joel Sing | |
the MAC address registers. In most cases these already have the correct MAC address. This should address PR5743. Thanks to Rodolfo Gouveia for testing earlier diffs. ok dlg@ | |||
2008-10-07 | if fetching a config page for a sas target doesnt work then let the scsi | David Gwynne | |
midlayer try to probe it anyway. this lets raid devices configured on an mpi to work again. reported by djm@ | |||
2008-10-07 | In ehci_free_itd() replace LIST_INSERT_AFTER(LIST_FIRST(..), ..) with | Marcus Glocker | |
LIST_INSERT_HEAD(..) to prevent a crash when the freelist is empty. From NetBSD. | |||
2008-10-07 | Do not display file offsets and a few other pieces of information, except | Theo de Raadt | |
to the user or the superuser. Display * for those fields instead. From PR 5113, but modified to use copyout correctly. comments from tedu, ok from others | |||
2008-10-06 | more readable virtual memory size values. | Brad Smith | |
ok deraadt@ | |||
2008-10-06 | regen | Jonathan Gray | |
2008-10-06 | Add some devices from submitted dmesgs. | Jonathan Gray | |
2008-10-06 | Remove useless comment. | Mark Kettenis | |
2008-10-06 | remove dead stores and newly created unused variables. | Charles Longeau | |
Found by LLVM/Clang Static Analyzer. ok weingart@ | |||
2008-10-06 | Don't force multi transaction endpoints (>1024 bytes) down to single | Marcus Glocker | |
transactions. From NetBSD. | |||
2008-10-06 | Unconditionally compile idt_vec_xxx functions. | Mark Kettenis | |
2008-10-06 | Add missing checks for sc_focus being NULL. Found the hard way by | Miod Vallat | |
Jesus Sanchez. | |||
2008-10-06 | uvn_attach message is purely diagnostic, not needed | Theo de Raadt | |
no ok's from anyone because they are all slacking | |||
2008-10-06 | sync | Theo de Raadt | |
2008-10-06 | another geforce | Theo de Raadt | |
2008-10-06 | Detect and store the PCI/PCIe bus speed. | Brad Smith | |
From DragonFly | |||
2008-10-05 | Add a flag to indicate a 64-bit PCI bus is present. | Brad Smith | |
2008-10-05 | Detect if the adapter is a PCIe adapter and set the RL_FLAG_PCIE flag | Brad Smith | |
if so. | |||
2008-10-05 | Remove IOAPIC ID remapping code. It should not be necessary to avoid reusing | Mark Kettenis | |
LAPIC IDs and if there are MPBIOSes we handle them with ACPI now. ok deraadt@ | |||
2008-10-05 | Always update published link state even if the internal link state doesn't | Mark Kettenis | |
change. Prevents us from getting stuck in LINK_STATE_UNKNOWN. Fixes PR 5914. tested by deraadt@, sthen@ ok deraadt@ | |||
2008-10-05 | In malloc_page_free(), restore the correct wire_count value. | Miod Vallat | |
2008-10-05 | Add missing argument to printf. | Mark Kettenis | |
2008-10-04 | The wrong byte of the return code was being looked at for the | Theo de Raadt | |
PCI probe. Yuichiro Goto, PR 5048 It would be nice if someone with a "pci0 at mainbus0 bus 0: configuration 2" system would double check this and mail us back. ok toby | |||
2008-10-04 | regen | Mark Kettenis | |
2008-10-04 | Some AMD RS780 IDs (same as those listed under ATI). | Mark Kettenis | |
2008-10-04 | Fix potentially uninitialized variables in syscall(). | Miod Vallat | |
2008-10-04 | Remove bogus code from the error path in sr_raid0_rw(); ok marco@ | Miod Vallat | |
2008-10-04 | Commit cleanup part of the diff that was backed out in the previous commit | Mark Kettenis | |
(removal of unused functions). requested by deraadt@ | |||
2008-10-04 | More Linksys models (to match the Netgear ones) from PR 3879. I am not | Theo de Raadt | |
adding the PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID version though without proof that it actually exists. | |||
2008-10-04 | this is not the cvtql/sv opcode. ok miod@, naddy@ | Martynas Venckus | |
2008-10-04 | At clock initialization, if we discover that tickadj is 0 (due to very | Theo de Raadt | |
high HZ) set it to 1, to avoid various divide-by-zero errors later Based on discussion in PR 5511 ok miod | |||
2008-10-04 | When closing the video stream switch back to default interface as last | Marcus Glocker | |
action. Shuts down the device gracefully. | |||
2008-10-03 | Backout. kettenis@ has reservations. | Tobias Weingartner | |
2008-10-03 | Use ether_ioctl(). | Brad Smith | |