summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-29it seems in fifteen years, and eleven revisions of this page, we have neverJason McIntyre
actually had an update command; make one more, final, edit... ok krw ian deraadt
2011-04-29Only redraw the status line on command update, not the entire clientNicholas Marriott
(big DOH).
2011-04-29In certain failure cases, a RST would be sent out on rdomain 0,Bret Lambert
regardless of the rdomain the packet was received on. Explicitly pass the rdomain to the tcp_respond() monstrosity to compensate for said monstricism which led to this behavior. ok claudio@
2011-04-29Add currently undocumented keyboard options available on ifstat view.lum
ok jmc@
2011-04-29small tidy. contribution from patrick keshishian and extra tab spot by ↵lum
halex. Thanks. ok nicm@
2011-04-29zero out a scsi_links node_wwn and port_wwn fields after initialising itDavid Gwynne
by copying the adapters scsi_link. this way devices wont inherit the adapters addresses on fc fabrics.
2011-04-28ixnay on the nopfayMiod Vallat
2011-04-28syncMiod Vallat
2011-04-28syncTodd T. Fries
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.