summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This will enable uvm_map to behave intelligently when allocating. Prodded by deraadt to commit this.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This enables future uvm_map allocator to behave intelligently.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This will enable future uvm_map code to make intelligent decisions during allocation.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This will enable future uvm_map to make intelligent allocation decisions.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This will enable intelligent decisions with future uvm_map.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
This enables future uvm_map code to make intelligent decisions. Code is not called at the moment.
2011-04-28Expose pmap_prefer parameters.Ariane van der Steldt
Enables future uvm_map code to make intelligent decisions during allocation. No functional change.
2011-04-28Expose pmap prefer parameters.Ariane van der Steldt
Enables future uvm_map code to make intelligent decisions. No functional change.
2011-04-28fix build ok martynas@Todd T. Fries
2011-04-28Try to schedule a new task for the connection in conn_task_cleanup()Claudio Jeker
this removes the session_schedule() in the task_pdu_cb().
2011-04-28DATA OUT operations need to be piggibacked on the same connection asClaudio Jeker
the initial SCSI REQUEST so use conn_task_issue() in vscsi_dataout().
2011-04-28- enable fenvMartynas Venckus
- add nearbyint, nearbyintf and nearbyintl implemented using fenv
2011-04-28spacesMarco Peereboom
2011-04-28Safety bump of gcc2 libstdc++ for wprintf(). Tested by otto, thanks!Stefan Sperling
2011-04-28Expose wprintf and friends in the gcc3 libstdc++ std:: namespace.Stefan Sperling
Tested by naddy, thanks! Major bump for safety. ok kettenis espie
2011-04-28Bring back wprintf() for gcc4 libstdc++.Stefan Sperling
2011-04-28Bring back wprintf. We've sorted out what to do for gcc2 and gcc3.Stefan Sperling
"Yes, go ahead then" deraadt
2011-04-28fenv improvements and cleanupsMartynas Venckus
2011-04-28report XS_RESET to the midlayer for any pending commands when vscsi isDavid Gwynne
closed. if you're using iscsid with mpath, this will let mpath retry the commands when iscsid comes back. discussed with claudio@
2011-04-28clean up the path ops struct a bit. the path drivers init their xsh withDavid Gwynne
their start routines, they dont have to pass pointers to them in the ops struct.
2011-04-28Make in_broadcast() rdomain aware. Mostly mechanical change.Claudio Jeker
This fixes the problem of binding sockets to broadcast IPs in other rdomains. OK henning@
2011-04-28remove horrible abuse of kthread_create_deferred(9). this was beingJacob Meuser
used to "do things later" and was potentially sleeping in swapper context. the latter is really bad, because it might never wake up. instead, move the things that usb_first_explore() was doing to the first run of the explore task. since tasks are run in a kthread, they are in process context and ok to sleep. fixes boot hang noticed by jsg@, which mikeb@ debugged and found usb_first_explore() to be sleeping swapper context
2011-04-28- slight tweak for FILESJason McIntyre
- reword EXAMPLES a little, for readability
2011-04-28use ULONG_MAX instead of ~0Alexandre Ratchov
from Michael W. Bombardieri <mb at ii.net>, thanks
2011-04-28remove deadcode, use err(1, "%s", str) instead of err(1, str)Alexandre Ratchov
from Michael W. Bombardieri <mb at ii.net>, thanks!
2011-04-28Similar to the in_pcb.c change allow raw sockets to be bound to theClaudio Jeker
local network boradcast. While there kill some leftover AF_IMPLINK checks. OK henning@, sthen@
2011-04-28Allow SOCK_DGRAM sockets to be bound to the local network broadcast addr.Claudio Jeker
These sockets will only see broadcast sent to that particular address. Some applications like samba use this feature. Problem found and initial version by sthen@, OK sthen@, henning@
2011-04-28Implement a new authentication method allowing aucat and midicat toAlexandre Ratchov
work over TCP, for instance, to expose the sound card of one machine with other machines of the network. The first client generates a 128-bit random number (aka the session cookie), saves it in $HOME/.aucat_cookie and sends it to the server. Successive clients load the cookie from $HOME/.aucat_cookie and send it to the server but the server accepts only clients whose cookie matches the session cookie. When all clients are gone, the session is over, and another cookie could start a new session, and so on. TCP is enabled on the server with the new -L option, and on the client side hostnames are specified with a new optional component in the device name. hints from damien, dlg and deraadt, tweaks from jmc
2011-04-28document hds(4).David Gwynne
2011-04-28divert-to is picky about the address family so adjust the ruleMike Belopuhov
2011-04-28ftp-proxy(8) now requires a divert-to ruleMike Belopuhov
2011-04-28switch ftp-proxy over to divert-to instead of rdr-to. this avoidsMike Belopuhov
an expensive state lookup (via natlook ioctl) and shrinks the code. tested by me and sthen, ok reyk sthen
2011-04-27Fix a few off-by-1 errors in atascsi.Matthew Dempsky
ok dlg@
2011-04-27include signal.hAlexandre Ratchov
2011-04-27move amsg.h containing protocol defs from aucat side to libsndio side.Alexandre Ratchov
requested by deraadt
2011-04-27attach acpithinkpad to newer lenovo models like the x120ejoshua stein
ok deraadt@
2011-04-27needs signal.h, tooTheo de Raadt
2011-04-27Merge from gcc3:Christian Weisgerber
Default gcc on alpha to -mfp-rounding-mode=d, to make code which assumes the rounding mode is always controlled by fpsetround() happy. ok martynas@, miod@
2011-04-27Implement "log verbose|brief" and allow the configuratuin of theClaudio Jeker
initiatior config which is just the ISID in case someone needs to fix them to a specific value.
2011-04-27Implement CTRL_LOG_VERBOSE to toggle log verbosity.Claudio Jeker
2011-04-27Rename task_cleanup() to conn_task_cleanup() seems a better place forClaudio Jeker
this function since it does connections scheduling.
2011-04-27Add log_verbose() like all the other log.c users.Claudio Jeker
2011-04-27Simplify ioprbs(4) scsi_xfer handling.Matthew Dempsky
XS_POLL handling is still wrong, but reportedly it works, so leaving it be for now. ok dlg@
2011-04-27use more volatile sig_atomic_t in signal handlersTheo de Raadt
ok ratchov
2011-04-27syncTheo de Raadt
2011-04-27kill a !__NetBSD__ ifdef which just confusesTheo de Raadt
2011-04-27syncTheo de Raadt
2011-04-27Tweak the description of the optional parts around =. Found this in myOtto Moerbeek
tree, no idea where it came from; ok millert@ jmc@
2011-04-27remove the blurb on siteXX.tgz and install.site: we can just drop thisJason McIntyre
text in without explaining what it is, and that is beyond the remit of this (or currently any) man page; the pertinent info has been moved to faq4 as discussed with schwarze and ajacoutot...
2011-04-27hds(4) is a path driver that knows how to talk to some hitachi modularDavid Gwynne
storage arrays. at the moment it makes a naive decision about which controller in an array to talk to. it does work, but a smarter version is being worked on. tested by and ok deraadt@