Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-10 | Schizo registers are all 64-bit, so use u_int64_t to store them and print them | Mark Kettenis | |
using %llx/%llb. | |||
2014-05-10 | Format string fixes for printing interrupt vectors. | Mark Kettenis | |
2014-05-10 | Some straightforward format string fixes. Also, print both the tx and rx | Mark Kettenis | |
interrupt vector numbers instead of printing rx; pointed out by florian@ | |||
2014-05-10 | Factor out the common ast bits into mi_ast() | Philip Guenther | |
ok deraadt@ | |||
2014-05-09 | format string fixes and removal of -Wno-format for sparc kernels. | Miod Vallat | |
2014-05-09 | Format string fixes and removal of -Wno-format for *ppc kernels. | Miod Vallat | |
2014-05-08 | Format string fixes for m88k; remove -Wno-format from the m88k kernels. | Miod Vallat | |
2014-05-08 | Format string fixes and removal of -Wno-format for landisk kernels | Miod Vallat | |
2014-05-08 | Format string fixes and removal of -Wno-format for hppa kernels. | Miod Vallat | |
2014-05-08 | Update #include list after not-so-recent uvm includes cleanups. | Miod Vallat | |
2014-05-08 | Format string fixes and removal of -Wno-format for arm kernels. | Miod Vallat | |
2014-05-08 | Format string fixes for alpha kernels, and remove -Wno-format | Miod Vallat | |
2014-05-08 | No longer build vax kernels with -Wno-format. | Miod Vallat | |
2014-05-08 | Format string fixes. | Miod Vallat | |
2014-05-08 | Enable -Wno-format in the kernel on i386 & amd64 | Stefan Fritsch | |
ok jsg@ "go for it" kettenis@ | |||
2014-05-08 | The pcexmem(4) and pcexio(4) should be attached on LUNA-88K2 only. | Kenji Aoyama | |
Actually, there seems to be no PC-9801 extension board slot on 'original' LUNA-88K. ok miod@ | |||
2014-05-07 | Fix whitespace mistakes. | Paul Irofti | |
2014-05-06 | Enable brswphy(4) on the Octeon platform. | Paul Irofti | |
Needed for proper networking on my DSR-500. | |||
2014-05-06 | remove cpsw_{read,write}_4 wrapper functions and just use the real | Jasper Lievisse Adriaanse | |
bus_space_{read,write}_4 instead. tested by nick@, ok bmercer@ | |||
2014-05-06 | Include <sys/vmmeter.h> directly instead of relying on it being | Martin Pieuchot | |
pulled by <uvm/uvm_extern.h> and turn uvm_total() into a private function. The preferred way to get memory stats is through the VM_UVMEXP sysctl(3) since VM_METER is just a wrapper on top of it. In the kernel, use `uvmexp' directly instead of uvm_total(). This change does not remove <sys/vmmeter.h> from <uvm/uvm_extern.h> to give some more time to port maintainers to fix their ports. ok guenther@ as part of a larger diff. | |||
2014-05-04 | format string fixes for bus_addr_t and bus_size_t | Stefan Fritsch | |
bus_addr_t and bus_size_t are u_long everywhere ok kettenis@ | |||
2014-04-30 | format string fixes for (u)int64 vars | Stefan Fritsch | |
ok kettenis@ | |||
2014-04-30 | Enforce proper alignment of stack variables which may get accessed with | Miod Vallat | |
double-word load and store instructions. This used to work by chance, but recent compiler changes no longer put us in the lucky situation. tweaks kettenis@ | |||
2014-04-28 | Remove bogus semicolon. | Brad Smith | |
Pointed out by LLVM. fd.c:1378:29: error: if statement has empty body [-Werror,-Wempty-body] ok miod@ | |||
2014-04-26 | Do not pass a NULL argument to OF_getprop(), even if it's fine for the | Martin Pieuchot | |
moment since we use an intermediate buffer and we specify a length of 0, there's no need for an exception here. Noticied while playing with the virtual-mode client interface of firmware. | |||
2014-04-26 | Allow to compile with DEBUG_PMAP defined. | Martin Pieuchot | |
2014-04-26 | remove a duplicate break statement | Jonathan Gray | |
2014-04-25 | Defer the free of the hibernate structures until later, when it is safe to | Mike Larkin | |
do so. Freeing the hibernate structures too early leads to inadvertent calls into splx when we aren't ready for them yet. Found when trapping splx calls in the resume path. discussed with deraadt@ at m2k14 | |||
2014-04-25 | test dt_min for invalid minute values instead of testing dt_sec twice | Jonathan Gray | |
ok bmercer@ | |||
2014-04-22 | Unify the model name to LUNA-88K{,2}, that is considered the | Kenji Aoyama | |
`official' name. ok jmc@ miod@ | |||
2014-04-22 | Remove RX checksum offloading support. The chip is too limited, and | Christian Weisgerber | |
examining higher protocol layers to adjust the checksum and calculate the pseudo-header in the driver is too complex to be worthwhile. ok henning@ | |||
2014-04-21 | Fix off-by-one error in PG_LGFRAME mask | Philip Guenther | |
ok mlarkin@ | |||
2014-04-20 | emc on my cx500 works as well as rdac on all my rebadged engenio kit. | David Gwynne | |
2014-04-19 | Don't panic if we're trying to disestablish an MSI but the hardware is gone. | Mark Kettenis | |
tested by & ok mlarkin@ | |||
2014-04-18 | rename wd33c93 to wd33c93ctrl (but keep the filenames as is) so we can | Jasper Lievisse Adriaanse | |
add attributes to it later; as wd33c93 is not a valid device name. ok miod@ | |||
2014-04-18 | Have each thread keeps its own (counted!) reference to the process's ucreds | Philip Guenther | |
to avoid possible use-after-free references when swapping ids in threaded processes. "Do I have the right creds?" checks are always made with the threads creds. Inspired by FreeBSD and NetBSD "right time" deraadt@ | |||
2014-04-16 | Add generic driver for "NEC PC-9801(*) extension board slot" on | Kenji Aoyama | |
LUNA-88K. LUNA-88K{,2} has one or two slot(s) that can attach the extension board designed for PC-9801. This driver provides dedicated mmap(2) and capability for waiting specified interrupt on that slot so that we can use the extension board from userland program. (*)PC-9801 is a Japanese popular personal computer, mainly used in 1980-90's. (see http://en.wikipedia.org/wiki/NEC_PC-9801) ok miod@, and man pages jmc@ | |||
2014-04-14 | Fewer <uvm/uvm.h> | Martin Pieuchot | |
2014-04-14 | move the hardware structures into ahcireg.h. | David Gwynne | |
2014-04-13 | Clean up last bits of TCP_WRAPPERS and ELF_TOOLCHAIN. | Brad Smith | |
ok miod@ | |||
2014-04-12 | Delete unused variable. | Kenji Aoyama | |
2014-04-09 | Make trapDump() take the printf-like function as a 2nd parameter. | Miod Vallat | |
No functional change; helps non-released kernels with extra debugging code (-: | |||
2014-04-08 | Fewer <uvm/uvm.h>! | Martin Pieuchot | |
2014-04-08 | Less <uvm/uvm.h> | Martin Pieuchot | |
2014-04-08 | No need for <uvm/uvm_page.h> | Martin Pieuchot | |
2014-04-08 | Add rgephy(4) for axe(4) and axen(4). | Brad Smith | |
2014-04-07 | Enable upd(4) on archs where uhidev(4) is present, requested by mpi@. | andre | |
2014-04-07 | increase MSGBUFSIZE | Theo de Raadt | |
2014-04-07 | Add axen(4) wherever axe(4) is. | Brad Smith | |
ok mpi@ yuo@ | |||
2014-04-05 | enable hds, and give up on isp | Theo de Raadt | |