summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-02Enough of the hand-rolling of queues. Turn client->leases andKenneth R Westerback
client->offered_leases into TAILQs.
2013-05-02tedu broken Resource Reservation Protocol code that was ifdef RSVP_ISI.Martin Pieuchot
ok deraadt@, tedu@ (implicit)
2013-05-02Hook up fmemopen and open_memstream tests.Martin Pieuchot
2013-05-02always attach the battery sensor if the adapter lets us query it.David Gwynne
newly replaced batteries dont show up immediately.
2013-05-02remove static from a simple lock to avoid a compiler warning/error thatTed Unangst
shows up due to the lock.h simplification. noticed by patrick. stealing his commit because the tree should at least compile while we debate the future of simplelocks.
2013-05-01a few tweaks noticed by jsingTed Unangst
2013-05-01exorcise lockmgr. the api remains, but is now backed by recursive rwlocks.Ted Unangst
originally by thib. ok deraadt jsing and anyone who tested
2013-05-01Remove useless cast of ROOT_INFO to ino_t. OK otto@Todd C. Miller
2013-05-01May 01* update currency exchange rates;Jason McIntyre
2013-05-01Add a secure monitor call function, so that a secondary cache controllerPatrick Wildt
driver can talk to its controller properly. From drahn at dalerahn.com. ok bmercer@
2013-05-01Disable PandaBoard's L2 Cache early on bootup. We will re-enable itPatrick Wildt
later once we're ready. ok bmercer@
2013-05-01Fix a case where we might be cache flushing unmapped pages.Patrick Wildt
From Raphael Graf and NetBSD. ok miod@
2013-05-01provide a sensor for the battery backup unit (bbu) on mfi boards thatDavid Gwynne
support it. now i can tell (a bit better) why io might be slow on some of my boxes.
2013-05-01there's some extra bits for the bbu status that freebsd dont have. provideDavid Gwynne
a %b thing for them too. now i just have to figure out how to represent this nicely: mfi0: fw_status 0xc00<REPLACE_PACK,CAPACITY_LOW> :(
2013-05-01provide a couple of %b things for mfi_hw_present and mfi_adapter_ops cosDavid Gwynne
im somehow too lazy to read a %x and look for a couple of bits set, but not lazy enough to not write a %b thing.
2013-05-01dont need to walk alldevs during sensor creation looking for the logicalDavid Gwynne
disk scsibus when we record that in mfi_attach. also happens to get rid of a logic error that let it come out of the loop on alldevs with a reference to something that wasnt the logical disk scsibus and use that.
2013-05-01Add a cortex bus which represents the ARM MPCore Complex.Patrick Wildt
It will attach only to ARM Cortex A9 and A15 SoCs. The generic interrupt controller and timer will attach to this bus, later a secondary cache controller can be added. The base address for those controllers are figured out using the periphbase register. ok bmercer@
2013-04-30Clear the right pixels when scrolling backwards.Mark Kettenis
Fixes issue reported by tedu@
2013-04-30point people at pkg_checkMarc Espie
ok jmc@
2013-04-30syncTodd T. Fries
2013-04-30Fix beagle makefile dependency after switching to new context switchingPatrick Wildt
code. ok bmercer@
2013-04-30Use ARMv7 access permission bits.Patrick Wildt
ok bmercer@
2013-04-30Switch from pmap to pmap7.Patrick Wildt
ok bmercer@
2013-04-30various small fixes;Jason McIntyre
2013-04-30Add context switching code matching to our pmap for ARMv7.Patrick Wildt
ok bmercer@
2013-04-30Add matching header for pmap7.Patrick Wildt
ok bmercer@
2013-04-30- replace TIMEVAL_* function/macros with macros from sys/time.hFlorian Obser
- replace insque(3) with SLIST from queue(3) - with that, rewrite rtadvd_check_timer() logic to avoid timeval {0x7fffffff, 0x7fffffff} test/ok sthen@
2013-04-30move variables to type time_t; fix format stringsFlorian Obser
test/ok sthen@
2013-04-30remove params after API change.Eric Faurot
2013-04-30Do not take external buffers for storing DNS responses in the internalEric Faurot
async API. That is actually useless and it makes the code more complicated. The required buffers are always allocated when needed.
2013-04-30Replace the statically defined protection bits with a macro, which willPatrick Wildt
be useful for the upcoming ARMv7 changes. ok bmercer@
2013-04-30Remove unused function argument variables 'len' and 'auth' fromMarcus Glocker
ntp_sendmsg(). They have been removed from the function body in the past but not from the argument list. From Maxime Villard
2013-04-30white space tweakDavid Gwynne
2013-04-30white space fixesDavid Gwynne
2013-04-30use MR_DCMD consistently. some MD_DCMD was in there somehow.David Gwynne
2013-04-30pull in BBU bits from freebsdDavid Gwynne
2013-04-30Handle newer fiber adapters the same way as 82575/82576,Jonathan Gray
required to make 82580(i340) and i350 based adapters work. Tested by Rogier Krieger on an i350-F2.
2013-04-30copy input flags in result addrinfo structures.Eric Faurot
2013-04-30ignore SIGPIPE so we don't fall over if an ldap connection breaksJonathan Matthew
ok dlg@
2013-04-29Tweak previous: test __BSD_VISIBLE with #if, not #ifdefPhilip Guenther
ok matthew@
2013-04-29syncTodd T. Fries
2013-04-29syncTodd T. Fries
2013-04-29regenMatthew Dempsky
2013-04-29Extend P_SIGSUSPEND handling in userret() to properly restore theMatthew Dempsky
sigmask even if there are no pending signals under the temporary sigmask. Refactor existing select() and poll() system calls to introduce the pselect() and ppoll() system calls. Add rthread wrappers for pselect() and ppoll(). While there, update cancellation point comments to reflect recent fdatasync() addition. Minor bumps for libc and librthread due to new symbols. ok guenther, millert, deraadt, jmc
2013-04-29Remove most of pre-rc.d(8) backward compatibility.Antoine Jacoutot
ok krw@ sthen@ rpe@ halex@ dcoppa@
2013-04-29ulpt(4) depends on firmload since its rev 1.41 when it got support forMartin Pieuchot
uploading HP LaserJet firmwares. From Dennis Lindroos on bugs@
2013-04-29add -h to usage();Jason McIntyre
2013-04-29implement -h from libexec/identd, which hides usernames/uids.David Gwynne
2013-04-29use FD_CLOEXEC instead of 1; from David HillOkan Demirmen
ok otto
2013-04-29use O_CLOEXEC with open() instead of open/fcntl; from David HillOkan Demirmen
ok otto