summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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@
2011-04-27Do not explicitly enable interrupts before returning from interrupt.Alexander Bluhm
This fixes possible stack overflows under high interrupt load. Note that this allows traps on kernel code to run with interrupts blocked. From Christian Ehrhardt ok guenther@ deraadt@
2011-04-27support rooting off multipath disks.David Gwynne
if you boot from a disk that ends up behind mpath(4) on sparc64, it wont be able to resolve it to the actual disk device since a path driver (eg sym(4)) sits where ofw tells us a disk is. this diff allows the bootpath code to match on path drivers, and then asks mpath to swap the path for the disk device. ok kettenis@
2011-04-27whitespace fixes.David Gwynne
2011-04-27Cosmetic:Antoine Jacoutot
* "Installing foo" -> "{Merging,Upgrading} foo" where it makes sense * remove the "it will remain to merge by hand" msg, too chatty and we already tell the user at the end of a sysmerge run if some files are still left to handle ok sthen@
2011-04-27support Intel 6 series SATA in non raid/non ahci mode.Jonathan Gray
tested by Daniel Dickman
2011-04-27regenJonathan Gray
2011-04-27cast one blocksize occurrence to unsigned long, fixes du(1)'s outputIgor Sobrado
for directories larger than one terabyte; while here, wrap a long line. problem found by Chano Antuna and diff written with lots of good advice from millert@, thanks! ok millert@
2011-04-27more Intel non raid/non ahci mode 6 Series SATAJonathan Gray
2011-04-27Start implementing the FSM. Introduce a session FSM that is run via aClaudio Jeker
callback and implement some of the connection FSM actions. Implement logouts so that discovery sessions do a nice login -> query -> logout. Fix the task scheduling especially for immediate and connection specific tasks. The session will now only schedule tasks to a session that is in LOGGED_IN state. looks good dlg@
2011-04-27use dma safe memory when talking to devices. this was written before bigmemDavid Gwynne
required this. requested by deraadt@
2011-04-27fix the interrupt handler in the case when the interrupt is sharedAlexandre Ratchov
with other pci devices. Ignore the interrupt (and return 0) if neither of the events that make the handler do actual work are set. hints from jakemsr and dlg, explained by deraadt
2011-04-27if getting the RAID header fails, dont stop the midlayer from trying toDavid Gwynne
issues scsi commands against that target. it might be a normal device and the firmware is just being picky about which headers you can fetch. tested by and ok deraadt@
2011-04-27configure fc controllers to fail io as fast as possible when cables areDavid Gwynne
yanked. we want to reschedule them down active paths rather than wait for a minute while mpi decides that a path isnt coming back. discussed with and tested by deraadt@
2011-04-27if a path returns XS_SELTIMEOUT, retry the io down another path like weDavid Gwynne
do for XS_RESET. adapters return SELTIMEOUT when the device is gone.
2011-04-27return XS_RESET to the midlayer if the command was killed for some reasonDavid Gwynne
rather than the default of XS_DRIVER_STUFFUP. mpath(4) likes this better when you unplug paths.
2011-04-27rework the scanning of fibre channel ports to match how linux does it.David Gwynne
some fc parts dont like the header requests against missing devices with bus addressing, so now we do the magic iteration over active ports. the original problem was reported by deraadt@ lots of testing and debugging by deraadt@ tested on fc929 and fc949 adapters
2011-04-27No need to splbio/splx in the interrupt routine. It's alreadyKenneth R Westerback
done around the manual invocation. Prompted by dlg@.
2011-04-27no need for rc(8) to do the job of rc.conf(8): remove the examples section;Jason McIntyre
ok ajacoutot schwarze
2011-04-26MMU address space holes are at a fixed position (ofcourse).Ariane van der Steldt
Therefore set UVM_FLAG_FIXED and enforce this. ok oga@
2011-04-26spring cleanup:Ingo Schwarze
* shorten and clarify some explanations * update the POSIX reference, this conforms to -2008 as well * use .In and .Rv where possible ok tedu@, feedback and ok jmc@
2011-04-26No point in a per-attachment scsi_adapter; move to global dpt_switchMatthew Dempsky
like we do in other SCSI drivers.
2011-04-26A plausible attempt at iopoolifying dpt(4).Matthew Dempsky
ok dlg@; miod@ warns me to not hold my breath on anyone testing this diff though...