summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-05-16Move !xs->data case into mfi_start_xs.Marco Peereboom
Return proper sense data when a polling command fails.
2006-05-16Crank bootblocks version for today's changes.Miod Vallat
2006-05-16Nuke whitespace at EOLMiod Vallat
2006-05-16Make standalone binaries compile with -Wall -WerrorMiod Vallat
2006-05-16Cleanup of mvme88k standalone code, with rewritten startup code withMiod Vallat
fewer assembly statements and much less magic, a few display artefacts removed, and private definitions moved out of the main prom.h.
2006-05-16Fix some more htole32 screw-ups.Marco Peereboom
Colapse all little SCSI functions into a single generic one. Fix a bug in the SGE calculation. This brings the driver up to post: mfi0 at pci12 dev 14 function 0 "Dell PERC SAS" rev 0x00: Dell PERC 5/e irq 5 scsibus3 at mfi0: 2 targets sd1 at scsibus3 targ 0 lun 0: <DELL, PERC 5/E Adapter, 1.00> SCSI5 0/direct fixed sd1: 237824MB, 237824 cyl, 64 head, 32 sec, 512 bytes/sec, 487063552 sec total sd2 at scsibus3 targ 1 lun 0: <DELL, PERC 5/E Adapter, 1.00> SCSI5 0/direct fixed sd2: 34176MB, 34176 cyl, 64 head, 32 sec, 512 bytes/sec, 69992448 sec total
2006-05-16Network bootloader for AV400 series, will load a native kernel. Still someMiod Vallat
rough edges to sort out, but enough to successfully boot a kernel. Will not work on series 530 yet.
2006-05-16Labeling was the wrong way around. Make 5e 5i and vice versa.Marco Peereboom
2006-05-16typoIan Darwin
2006-05-16Bring over upstream changes that fix backtraces through signal handlers andMark Kettenis
make us use PT_{GET|SET}FPREGS.
2006-05-16the ifp->if_linkstatehooks may be NULL, add an extra check to avoidReyk Floeter
possible kernel panic. this happened to me by using tun(4) in layer 2 mode (link0 flag) as a trunk port for testing.
2006-05-16https URL support; rototilled by a few people including me; originallyTheo de Raadt
from Rainer_Giedat@genua.de
2006-05-16Fix some htole32 I missed.Marco Peereboom
Sprinkle more debug.
2006-05-16- pcbflags is not modified in pcb_(dis)connect, so there's noMarkus Friedl
need to save/restore it. - inp->inp_laddr should be set _before_ calling pcb_disconnect(). otherwise pcb_disconnect() calls pcb_rehash() with the old laddr. [ currently this is not a problem since the hash ignores laddr ] tested by pedro
2006-05-16missing free; from Kylene HallMarkus Friedl
2006-05-16tpyoMichael Shalayeff
2006-05-16Add struct fpreg.Mark Kettenis
2006-05-16Fix tsleep wait channel name; ok damien@Miod Vallat
2006-05-16Don't forget to return 0 on success, doh.Otto Moerbeek
2006-05-16change only use of slice to 'partition letter' to be consistent withKevin Steves
use of partition everywhere else; ok jmc@
2006-05-16.Sx for section references;Jason McIntyre
2006-05-16fix commentsMichael Shalayeff
2006-05-16attach 8139's capable of C+ mode to the re(4) driver, instead of the rl(4)Brad Smith
driver.
2006-05-16consider re(4) as a possible 8139 chipset.Brad Smith
2006-05-16only allow setting Jumbo MTU frame sizes with the 8169 chipset.Brad Smith
2006-05-16Add READ CAPACITY.Marco Peereboom
2006-05-16Oops PREREAD not PREWRITE.Marco Peereboom
2006-05-16Add TUR and make it send it directly to firmware.Marco Peereboom
Sprinkle some extra debug.
2006-05-15Clear all relevant ccb fields when mfi_put_ccb frees a ccb.Marco Peereboom
2006-05-15Oops don't send command twice to firmware when polling.Marco Peereboom
2006-05-15Add INQUIRY command.Marco Peereboom
Add sgl magic.
2006-05-15Fix SIGFPE handling. The code doing an ADVANCE after calling trapsignal(),Mark Kettenis
which made is skip the first instruction of the signal trampoline in certain cases. That in turn truly hosed the stack. ok miod@, jason@
2006-05-15Sprinkle bus_space_barrier()s after LANCE register writes, as already doneMiod Vallat
in if_le.c; ok jason@
2006-05-15Clean secondary processors initialization code, similar to mvme88k;Miod Vallat
tested aoyama@
2006-05-15Merge creator attachment code again, it turns out the upa/mainbus attachmentMiod Vallat
code split is not necessary after all; ok jason@
2006-05-15better example;Jason McIntyre
from siju george ok deraadt
2006-05-15Adjust now that powerpc has PT_{GET|SET}FPREGS.Mark Kettenis
reminded by miod@
2006-05-15mention the lack of authenticated management frames in IEEE 802.11.Reyk Floeter
2006-05-15Implement PT_{GET|SET}FPREGS.Mark Kettenis
"looks good to me" miod@, ok drahn@
2006-05-15initial implementation of "IP Roaming" in hostapd, see hostapd.conf(5).Reyk Floeter
ok dlg@
2006-05-15syncTheo de Raadt
2006-05-15set cur & max limits with MaxFOOPerChild instead of cur twiceHenning Brauer
From: John Wong <johnw@wonghome.net>, ok ckuethe
2006-05-15add an -h option to override the hostname that is reported in thejoshua stein
SMTP banner ok beck@
2006-05-15make lint happyReyk Floeter
2006-05-15fix Mother's/Father's day and another entry.Alexandre Anriot
from FreeBSD; ok miod@
2006-05-15Try harder to trigger an exception. On architectures where floating-pointMark Kettenis
exceptions are deferred, we might not see the exception before another floating-point instruction is executed. This is especially true on the i387 where we don't see underflow/overflow until the result is stored into memory.
2006-05-15point to the correct FTP site that can be used to get firwmare patchesRobert Nagy
and also note the reader that the SunSolve web interface can be used for the same purpose.
2006-05-15better wording for the "memory" section;Jason McIntyre
2006-05-15add a little bit more to -X;Jason McIntyre
2006-05-15better description for -X;Jason McIntyre
based on a diff from jean raby; ok deraadt