Age | Commit message (Collapse) | Author |
|
|
|
No functional change. "I like the idea" from guenther@
|
|
if the same had been done line-by-line. From Michal Mazurek.
|
|
|
|
in part based on ideas by bentley@.
While here, improve the documentation.
|
|
From Patrick Wildt.
|
|
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.
|
|
MouseDragEnd. It can be useful to bind them separately in copy mode.
|
|
never supported by any arm port and wouldn't have built due to a missing
cpufunc_asm_arm8.S file.
From Patrick Wildt.
|
|
attachments for ehci and ohci.
ok uebayasi@ jasper@ visa@ mpi@
|
|
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@
|
|
|
|
|
|
|
|
|
|
|
|
if_atu.c noted by Michal Mazurek.
|
|
|
|
ok deraadt@ tb@ (who had the same diff)
|
|
currtently TX/RX FIFO is not working.
ok by detraadt@
|
|
|
|
ok deraadt@
|
|
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@
|
|
OK krw@ natano@ as part of a larger diff
|
|
inaccessible files; self-explanatory."
ok jmc@
|
|
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@
|
|
ok otto@
|
|
known_hosts; bz#2554 reported by jjelen AT redhat.com
|
|
node. The root is the root, it has no parent.
From Patrick Wildt.
|
|
our own.
From Michal Mazurek, ok mmcc@
|
|
|
|
|
|
|
|
|
|
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@
|
|
Don't require it when building other sdhc attachments.
From Patrick Wildt.
|
|
- 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@
|
|
information
and they should not be a performance bottleneck
ok miod@ krw@
|
|
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@
|
|
These printfs were causing too much noise in dmesg during regular operation.
And don't forget to count input errors.
ok sthen@ mpi@
|
|
OK deraadt@ jca@
|
|
OK deraadt@ jca@
|
|
OK deeradt@ jca@
|
|
|
|
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@
|
|
Feedback millert@ kettenis@
|
|
ok nicm@
|
|
use after free of the scsi link structure during detach.
OK krw@
|
|
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@
|
|
program early
- #define SPAMD_USER "_spamd" and use it on getpwnam(3) call
- Set usage() as __dead void
- Remove lint-style comments
OK beck@
|