Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-03 | Add support for the newer 82575 and maybe 82576 chips. The cards work more | Claudio Jeker | |
or less out of the box if one explicitly enables the TX DMA engine. Only tested with 82575, people with 82576 cards may contact me for a diff. OK kettenis@ | |||
2009-06-03 | whitespace. "Sure" marco@ | Chris Kuethe | |
2009-06-03 | sync these also | Janne Johansson | |
2009-06-03 | sync | Janne Johansson | |
2009-06-03 | remove bad #ifdef from syscall.master | Janne Johansson | |
2009-06-03 | Arla client rename from xfs to nnpfs for later upgrades. Tested on various ↵ | Janne Johansson | |
arches. ok todd@ beck@ | |||
2009-06-03 | Import acpi power resource driver. This is needed for suspend/resume logic. | Paul Irofti | |
Okay jordan@ and marco@. | |||
2009-06-03 | Oops need to kill the XXX comment that we are not enabling softraid rebuild | Marco Peereboom | |
2009-06-03 | Start using the shiny new function pointer to determine if we have disk | Marco Peereboom | |
arrivals or departures. | |||
2009-06-03 | Add a callback specifically for softraid. If you touch this kittens will | Marco Peereboom | |
be murdered and theo will visit with a 2x4. ok deraadt | |||
2009-06-03 | Whack conflicting BARs, such that they get assigned a non-conflicting value | Mark Kettenis | |
when we try to map it. | |||
2009-06-03 | set IFF_ALLMULTI properly also when in promiscuous mode and some | Christian Weisgerber | |
cosmetic tweaking; from Brad | |||
2009-06-03 | register bit definitions instead of magic numbers; | Christian Weisgerber | |
gleaned from the Linux tg3 driver; from Brad | |||
2009-06-03 | Don't disable dock devices if dock isn't initially attached | Jordan Hargrave | |
ok marco@ | |||
2009-06-03 | mjacob took kettenis's r1.44 into FreeBSD and added a tweak to | Kenneth R Westerback | |
ensure lvdmode is set. Apply that tweak. | |||
2009-06-03 | phys allocator fix: zeroed pages are not clean. | Ariane van der Steldt | |
2009-06-03 | ansi function decls, no binary change. | Jonathan Gray | |
2009-06-03 | Change bufhash from the old grotty hash table to red-black trees hanging | Bob Beck | |
off the vnode. ok art@, oga@, miod@ | |||
2009-06-03 | Revert readv/writev changes, as they trigger an apparent file descriptor | Bret Lambert | |
deadlock for ckuethe@ "if you have to revert, you have to revert" deraadt@ | |||
2009-06-03 | kill some unused defines, don't do an ifndef dance for | Thordur I. Bjornsson | |
things that should be defined here and remove a silly comment. | |||
2009-06-03 | remove the never used bufq_ code. | Thordur I. Bjornsson | |
ok oga@ 'dance for me' blambert@ | |||
2009-06-03 | Remove some redundant code. | Mark Kettenis | |
2009-06-03 | More KNF | Jordan Hargrave | |
ok marco@ | |||
2009-06-03 | Make sure we don't stomp on a RAID partition that is already in use. | Marco Peereboom | |
Code is now enabled and ready for general testing. | |||
2009-06-03 | droppmap is only necessary (and declared) on MULTIPROCESSOR | Artur Grabowski | |
2009-06-03 | remove cruft that snuck in with previous | Thordur I. Bjornsson | |
2009-06-03 | Just like on amd64. Instead of keeping a bitmap of which cpus a pmap | Artur Grabowski | |
is active on, save a curpmap pointer in cpu_info. This lets us simplify a few things and do lazy context switching from a user process to a kernel thread. There's a new IPI introduced for forcing a cr3 reload when we're tearing down a dead pmap. kettenis@ ok (after I polished a few minor things) | |||
2009-06-03 | Nuke CYRIX_CACHE (and related defines). They've not been used in a long | Tobias Weingartner | |
time. Beginning of refactoring cpu identification. ok kettenis@ | |||
2009-06-03 | Add acpivideo support. This adds brightness support for all laptops | Paul Irofti | |
except thinkpads, they will use the acpithinkpad driver. The driver is also hooked into wsconsole. So brightness can be adjusted via: $ wsconsctl display.brightness=<percentage> This is very helpfull on some laptops that have a nasty bios and get two steps instead of one when pressing the brightness button. Tested on various dell, fujitsu, acer, samsung and other laptops. Okay marco@, miod@. Suggestions from kettenis@. Lots of reviews and help from miod@, thanks! | |||
2009-06-03 | Added ejectable bay for IDE cdroms | Jordan Hargrave | |
ok marco@ | |||
2009-06-03 | Lift the NFS over UDP retransmit logic from FreeBSD. | Thordur I. Bjornsson | |
OK blambert@ FreeBSD commit message: Refactor the NFS over UDP retransmit timeout estimation logic to allow the estimator to be more easily tuned and maintained. There should be no functional change except there is now a lower limit on the retransmit timeout to prevent the client from retransmitting faster than the server's disks can fill requests, and an upper limit to prevent the estimator from taking to long to retransmit during a server outage. | |||
2009-06-03 | from Brad; I've read and tested it, also reads ok to dlg@. | Stuart Henderson | |
- Further simplify the re(4) receive filter handling and have everything taken care of in re_iff(), eliminating a bit of code from re_init(). - Remove unused if_flags field. | |||
2009-06-03 | Enabled docking driver | Jordan Hargrave | |
ok marco@ | |||
2009-06-02 | Enable acpidock device | Jordan Hargrave | |
ok marco@ | |||
2009-06-02 | KNF cleanup and denoise | Jordan Hargrave | |
ok marco@ | |||
2009-06-02 | ehci_alloc_sqtd_chain() was doing signed math on len, thus the great code | Theo de Raadt | |
curlen -= curlen % mps; can for very large transfers result in an intermediate variable growing larger than it should. Probably can't really happen in the real world. Do the same u_int repairs to the other matching drivers ok blambert kjell miod kettenis | |||
2009-06-02 | Somehow this change didn't get committed with the rest of the powepc interrupt | Dale Rahn | |
fixes. Required to be changed at the same time. | |||
2009-06-02 | give the retransmission count booking keeping a facelift, | Thordur I. Bjornsson | |
just store the maximun amount of rexmits in one place and cleanup. Also make sure this only effects soft mounts. OK blambert@ | |||
2009-06-02 | Change the wait-channel type to 'const volatile void *', eliminating | Philip Guenthe | |
the need for casts when calling tsleep(), msleep(), and wakeup(). "I guess so" oga@ "it's masturbation" art@ | |||
2009-06-02 | Added changes for docking station, must eject all children devices | Jordan Hargrave | |
ok marco@, mlarkin@ | |||
2009-06-02 | Instead of the global hash table with the terrible hashfunction and a | Owain Ainsworth | |
global lock, switch the uvm object pages to being kept in a per-object RB_TREE. Right now this is approximately the same speed, but cleaner. When biglock usage is reduced this will improve concurrency due to lock contention.. ok beck@ art@. Thanks to jasper for the speed testing. | |||
2009-06-02 | Constipate the second argument to timeout_add_*(). Also, use | Philip Guenthe | |
nitems() in two places instead of coding the array size and fix a spot of whitespace. ok miod@ blambert@ | |||
2009-06-02 | Avoid a buf oflow in uhidev_set_report_async() if we have to prepend the | Miod Vallat | |
report id and the data to report is too long (this should probably use dynamic allocation for large reports). | |||
2009-06-02 | Reintroduce the macppc interrupt subsystem rewrite. Several bugs have | Dale Rahn | |
been found and corrected. | |||
2009-06-02 | Shuffle function declarations a bit; ipsp_kern doesn't actually exist, | Bret Lambert | |
and tdb_hash is only used in ip_ipsp.c, so there's no need to declare it as extern in ip_ipsp.h ok claudio@ henning@ | |||
2009-06-02 | A piece of an upcoming diff was on the same line, revert that portion | Dale Rahn | |
of the previous diff so macppc is stable again. found/ok maja@ | |||
2009-06-02 | Abuse bio layer a little less by marking fake buffers with B_PHYS. | Marco Peereboom | |
From beck with lots of squealing and ear bleeds. Issue originally reported by todd. ok beck | |||
2009-06-02 | Add some extra protection against non-monotonic timestamps. ok stevesk | Chris Kuethe | |
2009-06-02 | Remove unused b_forw defines which make beck@ scream like a little girl | Miod Vallat | |
and disturb everyone's peace. | |||
2009-06-02 | - make sure biodone() gets run at IPL_BIO | Jasper Lievisse Adriaanse | |
OK thib@ |