summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-18double word;Jason McIntyre
2016-03-18Replace ioctl(fd, FIOCLEX) with fcntl(fd, F_SETFD, FD_CLOEXEC)Todd C. Miller
No functional change. "I like the idea" from guenther@
2016-03-18Make scrolling behaviour more sensible and maintain cursor position, asNicholas Marriott
if the same had been done line-by-line. From Michal Mazurek.
2016-03-18IXP425 is v5 not v4. Same change by msaitoh in NetBSD rev 1.16.Jonathan Gray
2016-03-18Make the SCRIPT_NAME logic simpler, safer, and make it actually work;Ingo Schwarze
in part based on ideas by bentley@. While here, improve the documentation.
2016-03-18Remove support for ARM9T (armv4t). Not used by any of the arm platforms.Jonathan Gray
From Patrick Wildt.
2016-03-18use properly separated _pkgfetch user.Marc Espie
abort if you can't find it. if you somehow managed NOT to update your users thru sysmerge or the normal build process, you deserve this.
2016-03-18Instead of reusing MouseUp at the finish of a drag, add a new keyNicholas Marriott
MouseDragEnd. It can be useful to bind them separately in copy mode.
2016-03-18Remove support for ARM8, an old armv4 processor without thumb that wasJonathan Gray
never supported by any arm port and wouldn't have built due to a missing cpufunc_asm_arm8.S file. From Patrick Wildt.
2016-03-18add octuctl, a driver for the Octeon II usb controller interface, andJonathan Matthew
attachments for ehci and ohci. ok uebayasi@ jasper@ visa@ mpi@
2016-03-18refactor the vlan multicast list handling.David Gwynne
the previous code had vlan_ether_purgemulti and vlan_ether_resetmulti, both of which did too many things. purgemulti would try and remove the multicast entries from the parent, and then free the local copies of the addresses. resetmulti would try to remove the address from the parent, and then optionally try to add them to a new parent. resetmulti in particular makes the overall vlan config steps fairly twisty. the refactor offers vlan_multi_apply, and vlan_multi_free. multi_apply simply adds or removes the multicast addresses from a parent interface. it is now up to the config steps to call them appropriately when configuring a parent or a new parent. vlan_multi_free only deletes the memory associated with the vlans multicast addresses. vlan_multi_apply is called when a parent is configured (ie, ifconfig vlan0 up), or unconfigured (ifconfig vlan0 down or a detach of the parent). vlan_multi_free is called when a vlan interface is destroyed (ifconfig vlan0 destroy). ok mpi@
2016-03-18document short URIsIngo Schwarze
2016-03-17remove NOTREACHEDmmcc
2016-03-17remove some ARGSUSEDmmcc
2016-03-17make man(1) mode the default rather than apropos(1) modeIngo Schwarze
2016-03-17Show modes for buffers more clearly. ok jasper@Mark Lumsden
2016-03-17'miliseconds' -> 'milliseconds' in comments.Kenneth R Westerback
if_atu.c noted by Michal Mazurek.
2016-03-17support short URIs for man.openbsd.orgIngo Schwarze
2016-03-17Remove #ifdef __vax__ bitsJeremie Courreges-Anglas
ok deraadt@ tb@ (who had the same diff)
2016-03-17add TXIC TX382B entry.SASANO Takayoshi
currtently TX/RX FIFO is not working. ok by detraadt@
2016-03-17regenSASANO Takayoshi
2016-03-17add TXIC TX382B (vendor 0x4651: product 0x3273)SASANO Takayoshi
ok deraadt@
2016-03-17Last parameter to execl[e]() functions *must* be cast to a pointer.Kenneth R Westerback
Just NULL is not good practise as NULL is theoretically allowed to be an integer rather than a pointer. Use (char *)NULL consistently instead of scattering a few (char *)0 and (void *)NULL into the mix. Prompted by and probably ok deraadt@ millert@ kettenis@ Definitely ok mestre@ ratchov@
2016-03-17Set mnt_data to NULL after freeing the file system specific mount point.Alexander Bluhm
OK krw@ natano@ as part of a larger diff
2016-03-17Remove needless DIAGNOSTICS sections saying only "Various messages aboutmmcc
inaccessible files; self-explanatory." ok jmc@
2016-03-17Do not access the scsi link structure in sdclose() if the diskAlexander Bluhm
device is already dying. Delete the sc_timeout when setting the SDF_DYING flag as the timeout delete in sdclose() may not be reached. OK krw@
2016-03-17properly guard to macrosmmcc
ok otto@
2016-03-17UseDNS affects ssh hostname processing in authorized_keys, notDamien Miller
known_hosts; bz#2554 reported by jjelen AT redhat.com
2016-03-17Do not iterate all over the tree if OF_parent() is called on the rootMartin Pieuchot
node. The root is the root, it has no parent. From Patrick Wildt.
2016-03-17Replace curcpu_is_idle() by cpu_is_idle() and use it instead of rollingMartin Pieuchot
our own. From Michal Mazurek, ok mmcc@
2016-03-17Fix a comment about ``p_usrpri'', from Michal Mazurek.Martin Pieuchot
2016-03-17KNF: Remove a blank line.Masao Uebayashi
2016-03-17simplify previous; ok bentleyJason McIntyre
2016-03-17missing El in previous;Jason McIntyre
2016-03-17Switch (non-curses, non-ksh) programs that use COLUMNS to a single idiom.Anthony J. Bentley
Previously behaviors were all over the map. This changes them to use COLUMNS first, and either terminal width or a hardcoded value (typically 80) as appropriate. ok deraadt@; man bits ok jmc@
2016-03-17Only attempt to build the pci sdhc attachment when it is configured.Jonathan Gray
Don't require it when building other sdhc attachments. From Patrick Wildt.
2016-03-17- add realloc_pages to move a buffer's physmem from one range to another.Bob Beck
- modify B_DMA handling to be in vfs_biomem.c - change buffer allocation to try allocations with NOWAIT and to throw away clean pages if allocation fails - allocate with WAITOK only if you can't throw away enough pages to succeed "probably sound" deraadt@
2016-03-17explicit_bzero for asn1 objects on free. Too often these contain sensitive ↵Bob Beck
information and they should not be a performance bottleneck ok miod@ krw@
2016-03-17Add error checking for COLUMNS/LINES environment variables.Anthony J. Bentley
It would be better to replace all the complicated existing code with a simple idiom, and this is being worked on. But for the moment, preventing vi from crashing is worthwhile. ok jung@
2016-03-16Make urndis(4) print tx/rx errors only if compiled in DEBUG mode.Stefan Sperling
These printfs were causing too much noise in dmesg during regular operation. And don't forget to count input errors. ok sthen@ mpi@
2016-03-16Remove a (now) obsolete comment about shortened IPv4 syntaxmestre
OK deraadt@ jca@
2016-03-16Replace strncpy(3) calls for safer strlcpy(3)mestre
OK deraadt@ jca@
2016-03-16Replace atoi(3) calls for safer strtonum(3)mestre
OK deeradt@ jca@
2016-03-16notab mode is not enabled at the moment.Mark Lumsden
2016-03-16Remove redundant check.Stefan Kempf
The compiler is also smart enough to recognize that this is redundant. The resulting code on amd64 is basically equivalent (slightly different register allocation and instruction scheduling). ok mpi@ deraadt@
2016-03-16More "(<blah> *)0" -> NULL, avoiding any stdarg functions.Kenneth R Westerback
Feedback millert@ kettenis@
2016-03-16style(9) includesmmcc
ok nicm@
2016-03-16Add SDF_DYING checks to more functions in scsi disk, to prevent anAlexander Bluhm
use after free of the scsi link structure during detach. OK krw@
2016-03-16Prefer fseek(3) over rewind(3) since the latter although it also calls fseekmestre
then additionally it calls clearerr(3) deliberately but we want to catch any error that may happen and this way we couldn't catch it OK tb@
2016-03-16- Check if user running spamlogd(8) has root privileges and if not then stopmestre
program early - #define SPAMD_USER "_spamd" and use it on getpwnam(3) call - Set usage() as __dead void - Remove lint-style comments OK beck@