summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-03fixed "text in message line would get stuck there" issue.Kjell Wooding
feedback from Philip Guenther and Han Boetes
2006-04-03Move scsi_done back under splbio.Marco Peereboom
ok dlg
2006-04-03Since we have a run-queue now lets check it in the isr and get io ontoMarco Peereboom
the card if there is any still pending. ok dlg
2006-04-03Silly dlg hz/500 isnt a whole lot. Also removed busy-wait inMarco Peereboom
ami_quartz_exec. This fixes interactivity issues that we saw when running iogen. This is possible due to the new run-queue model for io. ok dlg@
2006-04-03useless code simplification from adobriyan AT gmail.comDamien Miller
2006-04-03some more malloc(x * y); bzero() -> calloc(x, y) whacking fromDamien Miller
adobriyan AT gmail.com
2006-04-03lint love; ok kjellTheo de Raadt
2006-04-03Always leave compile buffer on first line after compilation.Kjell Wooding
Change 0->NUL while I'm here.
2006-04-02delete unused variableTheo de Raadt
2006-04-02- add pccbb_attach_hook in pccbbattach for MD initializations.Brad Smith
- omit arithmetics to bus_space_handle_t. - remove use of IST_LEVEL; not defined on sparc64 and unused. From NetBSD
2006-04-02sprinkle some lint loveTheo de Raadt
2006-04-02There's no need for some comments to be so utterly crypticPedro Martelletto
2006-04-02Two changes in the FFS2 lazy inode allocation code:Pedro Martelletto
- Insert some comments and space the code to improve readability - Make sure the inode's gen number is always positive (from NetBSD)
2006-04-02malloc(x * y) -> calloc(x, y) from adobriyan AT gmail.com, with tweaksDamien Miller
suggested by kjell@; ok otto@ pat@ millert@ jaredy@
2006-04-02some characters are in fact allowed in symbol names, don't freakJoris Vink
out when we encounter them, but handle them correctly. fixes an issue i ran into when running opencvs update on my local tree;
2006-04-02Prevent panic when loading pre-3.0 iwi firmware, and give a helpfulDimitry Andric
error message instead. Also return EINVAL for some other error paths. ok damien, deraadt
2006-04-02test char against '\0', not 0Kjell Wooding
2006-04-02When setting timestamps TOSERVER having write permissions is adaquate;Otto Moerbeek
problem experienced by Han Boetes; fix with "nfs4" rick at snowhite dot cis dot uoguelph dot ca. ok pedro@ tedu@
2006-04-02kill atoi(), correct signedness of internal API gettype(); ok a few peopleTheo de Raadt
2006-04-02Use SIZE_MAX instead of SIZE_T_MAX, the latter is not POSIX andOtto Moerbeek
remove redundant check on size. ok millert@ deraadt@
2006-04-02fix ^W (delete to start of word) in minibuffer;Kjell Wooding
i.e. actually kill text, don't just move the pointer.
2006-04-02Cope with FFS2's lazy inode allocation policy, adapted from FreeBSDPedro Martelletto
2006-04-02Set cg_ffs2_time whenever cg_time is setPedro Martelletto
2006-04-02In the cylinder groups, use part of the reserved space to sprinkle aPedro Martelletto
couple of new fields needed by FFS2, no functional change.
2006-04-02sessionid can be 32 bytes now too when sha256 kex is used; ok djm@Darren Tucker
2006-04-02clarify the Encore ENL832-TX model for the Realtek variant.Brad Smith
2006-04-02regenBrad Smith
2006-04-02add another PCI id to the ste(4) driver.Brad Smith
From the Sundance Linux driver.
2006-04-02clarify the Encore ENL832-TX model for the Realtek variant.Brad Smith
2006-04-02some extern and gooTheo de Raadt
2006-04-02oops, to64() is shared.Theo de Raadt
2006-04-02Enable DEBUG=-g -ggdb for rcs, move -g -ggdb out of CFLAGS for cvs.Ray Lai
Line up flags while I'm at it. OK to add DEBUG flags to rcs niallo@.
2006-04-02getting to the bottom of the issues. sprinkle a few casts that willTheo de Raadt
actually help us find bugs later (with lint, not cc), if they get introduced
2006-04-02be more careful checking for (off_t)-1 as the failure condition fromTheo de Raadt
lseek(), not just any old -1; ok millert
2006-04-02spacing;Joris Vink
2006-04-02be more alert for string truncation in cvs_initlog()Joris Vink
2006-04-02#ifdef lint not LINTTheo de Raadt
2006-04-02To be able to use the maximum number of IDE/SATA disks on an ICHJonathan Gray
system we have to make some channels native as there isn't enough legacy I/O space/interrupts to go around. Intel calls this enhanced mode. An updated and expanded version of a diff from Ulrik Holmén. "looks sane" grange@
2006-04-02#ifdef lint not LINTTheo de Raadt
2006-04-02a FALLTHROUGH and one size_t castTheo de Raadt
2006-04-02avoid lvalue cast by making local function be unsigned to begin withTheo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02sprinkle a socklen_tTheo de Raadt
2006-04-01Do not attempt to print parameters which turned out to be dead; fixes PR#5066.Miod Vallat
2006-04-01Revert previous commit, this causes sti1 probe to hang on some models.Miod Vallat
2006-04-01minor lint cleaning; ok millertTheo de Raadt
2006-04-01Remove index entries for \n since nroff will try to expand this.Todd C. Miller
No one uses the index entries anyway...
2006-04-01Fix typo; E<GT> -> E<gt>. From jmc@Todd C. Miller