summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-04-06kudos to djm for finding an embarrassing bug. using the same variableDavid Gwynne
as a counter for both an inner and outer loop is not good(tm). ok marco@
2006-04-05enable tqphy(4) here tooMartin Reindl
2006-04-05Enable an(4) on BE archs now that it works.Kurt Miller
2006-04-05Add support for big endian archs. tested by jaredy@ and ok jsg@Kurt Miller
2006-04-05reintroduce ami_complete, a replacement for ami_poll that is built on topDavid Gwynne
of the async exec and done commands. ami_poll uses a special command id that isnt needed for normal commands. on top of this we should drain the runq before using ami_poll. using ami_complete means that we can poll with commands still on the card.
2006-04-05Teach ffs_update() how to update FFS2 inodesPedro Martelletto
2006-04-05Make ffs_truncate() compatible with FFS2, from FreeBSDPedro Martelletto
2006-04-05add a power hook for bge(4).Brad Smith
From Thordur I. Bjornsson <thib at mi dot is>
2006-04-04enable tqphy(4), found on xl(4)Martin Reindl
2006-04-04Add a `prefetch threshold' member to the bus_dma_tag_t, so thatBrad Smith
eventually we can determine whether or not to allocate a spill page on a per-mapping basis. From NetBSD ok martin@
2006-04-04clean up after Theo's "support mbuf handling in alpha sgmap dma maps" commit.Brad Smith
ok martin@
2006-04-04Revert r1.58, I was on drugs - the array we are locking is one byte perMiod Vallat
page, so the arithmetic was ok. Spotted by david@
2006-04-04Add input routines to the i2s layer to support future Zaurus audio input.Christopher Pascoe
ok robert@
2006-04-04Add pxa2x0_dma_from_fifo to support DMA from internal peripheral FIFOsChristopher Pascoe
to memory. ok robert@
2006-04-04Abort any DMA that is in progress before changing the DMA completion handler,Christopher Pascoe
not after.
2006-04-04Fix a commentPedro Martelletto
2006-04-04Configure the I2S controller's GPIOs, not than the USB's.Christopher Pascoe
tested robert@
2006-04-04Small hex-vs-decimal typo from gwk, and tested by me (with cpusig checkUwe Stuehler
disabled because my BIOS sucks).
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-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-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-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-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-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-02regenBrad Smith
2006-04-02add another PCI id to the ste(4) driver.Brad Smith
From the Sundance Linux driver.
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-01Revert previous commit, this causes sti1 probe to hang on some models.Miod Vallat
2006-04-01use proper types and not fetch iobase that is not used later; damien okMichael Shalayeff
2006-04-01Don't do cylinder group block accounting for FFS2Pedro Martelletto
2006-04-01Mark FFS2 file systems with UM_UFS2Pedro Martelletto
2006-04-01Small fixes from form@:Alexander Yurchenko
- don't allow wildcard port locator - use GPIO_PIN_LOW instead of 0
2006-04-01Correctly map blocks for FFS2 in ufs_bmaparray()Pedro Martelletto
2006-04-01Put Damien's latest changes back in, okay deraadt@.Pedro Martelletto
Please note that the driver now requires new firmware (version 3.0).
2006-03-31Add sysctl to retrieve the routing table statisitcs. Will be used by netstatClaudio Jeker
instead of kvm access. OK henning@
2006-03-31Backout, causes panicsPedro Martelletto
2006-03-31FFS2 dinode pool needs to be defined here tooPedro Martelletto
2006-03-31Make ffs_statfs() tag FFS2 file systems as suchPedro Martelletto
2006-03-31Add MOUNT_FFS2Pedro Martelletto
2006-03-31ffs_statfs() should not panic on FFS2 file systemsPedro Martelletto
2006-03-31Teach ffs_vget() to allocate and associate FFS2 dinodesPedro Martelletto
2006-03-31Teach ffs_reclaim() to put FFS2 dinodes back into their poolPedro Martelletto
2006-03-31Add a pool for FFS2 dinodesPedro Martelletto
2006-03-31Super block changes for FFS2, thanks to all who tested.Pedro Martelletto
Silent okay after almost 3 weeks, hackers@.
2006-03-31No point in calling pte_spill_r() 90% of the time, when the first thingDale Rahn
it is going to do is test user/kernel and return, do it before the call.