summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-05-23Compile if no option SYSVMSG.Miod Vallat
2006-05-23add netgear fa311 v2;Jason McIntyre
2006-05-23add the HP ProLiant NC340T PCI-X quad port adapterBrad Smith
2006-05-23some clarifications for the "size" field + cleanup;Jason McIntyre
based on a diff from ingo schwarze;
2006-05-23add the HP ProLiant NC340T PCI-X quad port adapter.Brad Smith
2006-05-23add netgear fa311 v2;Jason McIntyre
from martin schroder; ok brad
2006-05-23Fix removing of trailing space in file name completion list.Otto Moerbeek
From Matthew Haub; ok krw@
2006-05-23make listen on example idiot proofHenning Brauer
suggested by "Karsten W. Rohrbach" <karsten@rohrbach.de>
2006-05-23add VLAN Query Protocol (VQP) dissector; ok canacar@ markus@Kevin Steves
2006-05-23one more spppcontrol removal, and small tweak;Jason McIntyre
2006-05-23update re(4) entries;Jason McIntyre
2006-05-23split long lines;Jason McIntyre
2006-05-23support requesting route refresh from a neighborHenning Brauer
2006-05-23allow bgpd to request a route refresh from a neighbor if that neighborHenning Brauer
announced route refresh capabilities
2006-05-23member interfaces of groups might have no IPs and ifa_lookup retun NULL,Henning Brauer
account for that. fixes PR5130, ok dhartmei
2006-05-23remove reference to spppcontrol, which rests in peace in the AtticReyk Floeter
ok brad@
2006-05-23bump copyrightReyk Floeter
2006-05-23knf and remove an unneeded debug messageReyk Floeter
2006-05-23regenBrad Smith
2006-05-23add Myrcicom Z8E.Brad Smith
2006-05-23addReyk Floeter
2006-05-23commited with unused variableTheo de Raadt
2006-05-23update the re(4) page a bit.Brad Smith
2006-05-23Oops mfi in front of struct name, not mdi.Marco Peereboom
2006-05-23Remove some debug cruft.Marco Peereboom
2006-05-23Add first half of physical disk data for bio.Marco Peereboom
2006-05-23according to the Linux 8139cp driver the TTTech MC322 adapter usesBrad Smith
the 8139C+ chipset, so attach with re(4) instead of rl(4). ok dlg@
2006-05-22Check for NULL cookies before calling hook_disestablish(). Just in caseKenneth R Westerback
the establish calls were bypassed or failed. ok mpf@
2006-05-22- fix and prettify SIOP_DEBUGMartin Reindl
- print device name on request sense failure ok krw@
2006-05-22Attach routines can fail before calling *hook_establish(), and theyKenneth R Westerback
often rely on the detach routine for cleanup. So be consistant and careful by checking for a NULL hook before calling *hook_disestablish in detach routines. ok mickey@ brad@ dlg@
2006-05-22Add support for raid 50 and 10 in bio.Marco Peereboom
2006-05-22Warn the user if the powerhook could not be established during attach. ForDavid Gwynne
extra correctness check that it is set before trying to disestablish it at detach. Whether you can detach a pci ohci controller is a separate issue. Inspired by krw@'s change in ohci.c 1.67 for PR #5128. ok krw@
2006-05-22Don't call powerhook_disestablish if there is no powerhook to disestablish.David Gwynne
This is possible if ohci_init fails in attach. Similar to krw@'s fix in ohci.c 1.67 for PR #5128. ok krw@
2006-05-22Expunge all #if defined(__NetBSD__) and #if defined(__FreeBSD__) crud.Kenneth R Westerback
Misused in many cases anyway. ok dlg@
2006-05-22move VM_NFREELIST out of ifdef kernel for nowTheo de Raadt
2006-05-22Don't call shutdownhook_disestablish() unless there is a shutdownhookKenneth R Westerback
established. Should fix PR #5128. ok dlg@
2006-05-22In wdcprobe(), directly invoke wdc_do_reset() instead of using the resetMiod Vallat
reset function pointer, as this can cause a NULL pointer dereference on some systems.
2006-05-22Add mail box to mfi_mgmt to handle sub commands more gracefully.Marco Peereboom
Remove some debug crud that snuck in the TEST_UNIT_READY case. Finish other half of BIOCVOL primitive. Add several structures to fill out the BIOCVOL primitive.
2006-05-22Add first half of BIOCVOL primitive.Marco Peereboom
2006-05-21Do a giant flush of disk and raid-card memory when SYNCHONIZE_CACHE is called.Marco Peereboom
2006-05-21Fix AV_IEN() computation for cpu #2 and #3.Miod Vallat
2006-05-21pretty up some debug statements.Marco Peereboom
2006-05-21Add bio alarm function.Marco Peereboom
Redo mfi_mgmt to deal with zero data commands.
2006-05-21kvtopte() is not used anymore.Miod Vallat
2006-05-21Replace lockmgr with rwlock; help and ok marco@Aleksander Piotrowski
2006-05-21Add generic management function.Marco Peereboom
Redo ccb_state flags so that we can actually sleep on it. Redo mfi_get_info to use new mgmt function. Add rw_locks for mgmt interface. Make BIOCINQ dynamic.
2006-05-21move the allocation of ccb out of ami_attach into a function of its ownDavid Gwynne
(aptly called ami_alloc_ccbs). allocate the ccbs after the firmware has been queried, but still for the full number of AMI_MAXCMDS. ok krw@
2006-05-21some diskless pointers; ok deraadtJason McIntyre
2006-05-21Backport fix from nvi 1.81.5: do not go into loop if :set number andOtto Moerbeek
:set leftright and the cursor moves to an empty line; PR 3154; ok beck@
2006-05-21move variable declarations at the start of a block in ami_attach to the topDavid Gwynne
of the function and unindent that block. ok krw@