Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-01 | a few tweaks noticed by jsing | Ted Unangst | |
2013-05-01 | exorcise 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-01 | Remove useless cast of ROOT_INFO to ino_t. OK otto@ | Todd C. Miller | |
2013-05-01 | May 01* update currency exchange rates; | Jason McIntyre | |
2013-05-01 | Add a secure monitor call function, so that a secondary cache controller | Patrick Wildt | |
driver can talk to its controller properly. From drahn at dalerahn.com. ok bmercer@ | |||
2013-05-01 | Disable PandaBoard's L2 Cache early on bootup. We will re-enable it | Patrick Wildt | |
later once we're ready. ok bmercer@ | |||
2013-05-01 | Fix a case where we might be cache flushing unmapped pages. | Patrick Wildt | |
From Raphael Graf and NetBSD. ok miod@ | |||
2013-05-01 | provide a sensor for the battery backup unit (bbu) on mfi boards that | David Gwynne | |
support it. now i can tell (a bit better) why io might be slow on some of my boxes. | |||
2013-05-01 | there's some extra bits for the bbu status that freebsd dont have. provide | David 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-01 | provide a couple of %b things for mfi_hw_present and mfi_adapter_ops cos | David 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-01 | dont need to walk alldevs during sensor creation looking for the logical | David 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-01 | Add 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-30 | Clear the right pixels when scrolling backwards. | Mark Kettenis | |
Fixes issue reported by tedu@ | |||
2013-04-30 | point people at pkg_check | Marc Espie | |
ok jmc@ | |||
2013-04-30 | sync | Todd T. Fries | |
2013-04-30 | Fix beagle makefile dependency after switching to new context switching | Patrick Wildt | |
code. ok bmercer@ | |||
2013-04-30 | Use ARMv7 access permission bits. | Patrick Wildt | |
ok bmercer@ | |||
2013-04-30 | Switch from pmap to pmap7. | Patrick Wildt | |
ok bmercer@ | |||
2013-04-30 | various small fixes; | Jason McIntyre | |
2013-04-30 | Add context switching code matching to our pmap for ARMv7. | Patrick Wildt | |
ok bmercer@ | |||
2013-04-30 | Add matching header for pmap7. | Patrick Wildt | |
ok bmercer@ | |||
2013-04-30 | - replace TIMEVAL_* function/macros with macros from sys/time.h | Florian 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-30 | move variables to type time_t; fix format strings | Florian Obser | |
test/ok sthen@ | |||
2013-04-30 | remove params after API change. | Eric Faurot | |
2013-04-30 | Do not take external buffers for storing DNS responses in the internal | Eric Faurot | |
async API. That is actually useless and it makes the code more complicated. The required buffers are always allocated when needed. | |||
2013-04-30 | Replace the statically defined protection bits with a macro, which will | Patrick Wildt | |
be useful for the upcoming ARMv7 changes. ok bmercer@ | |||
2013-04-30 | Remove unused function argument variables 'len' and 'auth' from | Marcus 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-30 | white space tweak | David Gwynne | |
2013-04-30 | white space fixes | David Gwynne | |
2013-04-30 | use MR_DCMD consistently. some MD_DCMD was in there somehow. | David Gwynne | |
2013-04-30 | pull in BBU bits from freebsd | David Gwynne | |
2013-04-30 | Handle 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-30 | copy input flags in result addrinfo structures. | Eric Faurot | |
2013-04-30 | ignore SIGPIPE so we don't fall over if an ldap connection breaks | Jonathan Matthew | |
ok dlg@ | |||
2013-04-29 | Tweak previous: test __BSD_VISIBLE with #if, not #ifdef | Philip Guenther | |
ok matthew@ | |||
2013-04-29 | sync | Todd T. Fries | |
2013-04-29 | sync | Todd T. Fries | |
2013-04-29 | regen | Matthew Dempsky | |
2013-04-29 | Extend P_SIGSUSPEND handling in userret() to properly restore the | Matthew 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-29 | Remove most of pre-rc.d(8) backward compatibility. | Antoine Jacoutot | |
ok krw@ sthen@ rpe@ halex@ dcoppa@ | |||
2013-04-29 | ulpt(4) depends on firmload since its rev 1.41 when it got support for | Martin Pieuchot | |
uploading HP LaserJet firmwares. From Dennis Lindroos on bugs@ | |||
2013-04-29 | add -h to usage(); | Jason McIntyre | |
2013-04-29 | implement -h from libexec/identd, which hides usernames/uids. | David Gwynne | |
2013-04-29 | use FD_CLOEXEC instead of 1; from David Hill | Okan Demirmen | |
ok otto | |||
2013-04-29 | use O_CLOEXEC with open() instead of open/fcntl; from David Hill | Okan Demirmen | |
ok otto | |||
2013-04-28 | Preliminary modifications for Xorg 1bpp server, based on OpenBSD/hp300 | Kenji Aoyama | |
and NetBSD/luna68k. Need more work in Xorg. luna88k/conf/GENERIC: - enable wsmux on GENERIC kernel luna88k/dev/luanfb.c: - make hardware access volatile'd - add extra ioctl(2) used in Xorg wsfb driver - add some workaround luna88k/dev/lunaws.c: - add WSDISPLAY_COMPAT_RAWKBD stuff for Xorg keyboard input luna88k/dev/omrasops.c: - change 'caddr_t' to 'u_int8_t *' "go for it!" miod@ | |||
2013-04-28 | Remove an obsolete paragraph in the BUGS section about using ftp(1) with | Lawrence Teo | |
4.2BSD servers. ok jmc nick tedu | |||
2013-04-28 | Revert the previous commit. It breaks the xenocara build on macppc and the | Brian Callahan | |
issue it fixes will be fixed anyway once the move to binutils-2.17 happens. xenocara breakage discovered by matthieu@ | |||
2013-04-28 | Revert the ARMv7 header split introduced in pmap7. | Patrick Wildt | |
ok bmercer@ | |||
2013-04-28 | Improved dealing of ARMv7 faults. Added ARMv7 fault descriptions. | Patrick Wildt | |
ok bmercer@ tested on zaurus by todd@ and patrick@ tested on armv7 boards |