Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-09 | include dev/hid/hid.h from dev/usb/usbhid.h, so all previous users | Joshua Stein | |
of it get the HID framework as they used to | |||
2016-01-09 | revert previous now that they are found in usbhid.h again | Joshua Stein | |
2016-01-09 | move UHID_* definitions back to usbhid.h where they were before the | Joshua Stein | |
HID separation | |||
2016-01-08 | ANSIfy gomoku(6) and change a char* to u_char* | mestre | |
OK tb@ | |||
2016-01-08 | adjust a debug message to use decimal instead of hex | Joerg Jung | |
ok gilles millert | |||
2016-01-08 | Handle redirects to _relative_ URIs containing '://', e.g. for archive.org. | Stuart Henderson | |
From Lauri Tirkkonen, plus tweak to comment. ok jung@ | |||
2016-01-08 | Zap extraneous SYNOPSIS sections. | Vadim Zhukov | |
The gettytab(5) and termcap(5) get FILES, others don't need anything. With input from & okay schwarze@ | |||
2016-01-08 | ANSIfy sail(6) plus some cleanup | mestre | |
OK tb@ | |||
2016-01-08 | Headers clean up | mestre | |
2016-01-08 | Remove unnecessary headers an sort | mestre | |
2016-01-08 | Straightforward headers cleanup | mestre | |
2016-01-08 | Add missing space in "Delivered-to:%s\n" header. | Christopher Zimmermann | |
OK sunil@ | |||
2016-01-08 | ANSIfy monop(6) | mestre | |
OK tb@ | |||
2016-01-08 | Headers cleanup and removal where suitable | mestre | |
OK tb@ | |||
2016-01-08 | ANSIfy mille(6) | mestre | |
OK tb@ | |||
2016-01-08 | Headers cleanup and also the following: | mestre | |
mille.h: #define CTRL locally, which is used by move.c and misc.c, to avoid including termios.h or sys/ttydefaults.h where it's actually defined varpush.c: Change _PATH_DEVNULL to "/dev/null" since other systems may not have it defined but also avoids including <paths.h> Included a few sugestions from tb@ who also gave his OK | |||
2016-01-08 | Delete the redundant "nchild" member of struct roff_node, replacing | Ingo Schwarze | |
most uses by one, a few by two pointer checks, and only one by a tiny loop - not only making data smaller, but code shorter as well. This gets rid of an implicit invariant that confused both static analysis tools and human auditors. No functional change. | |||
2016-01-08 | sync | Theo de Raadt | |
2016-01-08 | redefine 3 UHID_* vars that moved | Joshua Stein | |
2016-01-08 | pull in dev/hid/hid.h for moved HIO_* vars | Joshua Stein | |
2016-01-08 | protect structs in hid.h with #ifdef _KERNEL, to allow inclusion in | Joshua Stein | |
libusbhid | |||
2016-01-08 | Fix changes that last commit undid by mistake, sorry. | Alexandre Ratchov | |
2016-01-08 | Make code fit in 80 columns, remove trailing spaces & tabs. | Alexandre Ratchov | |
2016-01-08 | sync | Theo de Raadt | |
2016-01-08 | move code to add a midi port in a new mkport() routine | Alexandre Ratchov | |
2016-01-08 | Move HID support files out of dev/usb into new dev/hid directory | Joshua Stein | |
These files aren't USB-specific and were used by the previous Bluetooth implementation, and will be used by the upcoming HID-over-i2C implementation ok deraadt previous version ok kettenis and mpi | |||
2016-01-08 | Prefer warn(3) over perror(3) at the few places where it was used. | Ingo Schwarze | |
It is useful to see the program name. Suggested by Christos Zoulas (NetBSD). | |||
2016-01-08 | mikeb@ doesn't like RCS ids, so I add the OpenBSD one for him. | Reyk Floeter | |
2016-01-08 | Make mkopt() return NULL on failure | Alexandre Ratchov | |
2016-01-08 | Get rid of the arp and revarp input queues. | Martin Pieuchot | |
Packets of types ARP and REVARP are now processed in the softnet task, directly from ether_input() and without holding the KERNEL_LOCK. Tested by many, ok dlg@ | |||
2016-01-08 | add missing 'void' | tb | |
ok mestre@ | |||
2016-01-08 | Structural integrity hasn't improved in over twenty years. | tb | |
ok mestre@ | |||
2016-01-08 | Unbreak support for multiple -L options. | Alexandre Ratchov | |
2016-01-08 | don't call unlink() to delete socket as this would require cpath | Alexandre Ratchov | |
2016-01-08 | No need to include sys/queue.h | Alexandre Ratchov | |
2016-01-08 | Next step in UTF-8 support: | Ingo Schwarze | |
1. Improve all functions involving words by allowing non-ASCII characters to be part of words. 2. Allow insertion of non-ASCII characters without screwing up the display, by backing up to the start byte after inserting a continuation byte, and starting to re-print there. 3. Fix forward movement which i didn't get quite right in my previous commit: Always advance to a start byte, never to a final continuation byte, or the next insertion would split the character in the middle. OK mpi@ | |||
2016-01-08 | Make listen_new_xxx() routines return NULL on failure and check the | Alexandre Ratchov | |
returned value wheneverer they are called. | |||
2016-01-08 | On programming error, flush log buffer and abort() rather than | Alexandre Ratchov | |
calling exit(). | |||
2016-01-08 | Keep the pledge of the vmm and vm processes disabled for now as long | Reyk Floeter | |
as there is some more expected progress in the kernel interface. It can be tested, and should work, with the previous kernel commit of the "vmm" pledge, but is not called. | |||
2016-01-08 | Work around buggy zero-length packets produced by the DP83816A. | Martin Pieuchot | |
From Nathanael Rensen, ok dlg@ | |||
2016-01-08 | Add "vmm" pledge to allow restricted ioctl access to /dev/vmm. | Reyk Floeter | |
This will allow to pledge vmd(8)'s vmm and vm processes, so that VMs themselves run "sandboxed", including their host-side virtio layer. It will remain disabled for now (in userland) to not get into the way of ongoing development and upcoming changes in vmd and the ioctl interface. OK mlarkin@ deraadt@ "kernel side in, but not the callers in userland" | |||
2016-01-08 | Use unorderd list to store sub-device configuration (we don't use | Alexandre Ratchov | |
order anymore). No behaviour change. | |||
2016-01-08 | remove redundant debug message | Alexandre Ratchov | |
2016-01-08 | Don't calculate clock deltas is there are no time-outs. Removes (harmless) | Alexandre Ratchov | |
warnings about out-of-bounds clock deltas. | |||
2016-01-08 | various tweaks; | Jason McIntyre | |
2016-01-08 | Enable uonerng(4) where ualea(4) is already present. | Martin Pieuchot | |
2016-01-08 | uonerng(4) a driver for the Moonbase Otago OneRNG, from Devin Reade. | Martin Pieuchot | |
ok deraadt@ | |||
2016-01-08 | regen | Martin Pieuchot | |
2016-01-08 | OpenMoko OneRNG, from Devin Reade. | Martin Pieuchot | |
2016-01-08 | Must set MAX_PORTS to 65536, since we assign to | Stefan Kempf | |
ioports_map[VMM_PCI_IO_BAR_END (= 65535)]. Fixes an off-by-one. ok mlarkin@, reyk@ |