Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-06 | Add fw transition logic. | Marco Peereboom | |
2006-04-06 | Add structures and defines. | Marco Peereboom | |
Losely based on FreeBSD and Linux code. | |||
2006-04-06 | release kernel lock _after_ the emulation exit hook is called to protect ↵ | Michael Shalayeff | |
possible free()s; tedu@ deraadt@ ok | |||
2006-04-06 | Fix a process datasize leak with MAP_FIXED. When zapping old mappings | Kurt Miller | |
call uvm_unmap_p instead of uvm_unmap so that it has the process information and can adjust vm_dused. okay pedro@ tedu@ | |||
2006-04-06 | Hook up mfi, remains disabled. | Marco Peereboom | |
2006-04-06 | Add skeleton driver for MegaRAID SAS. | Marco Peereboom | |
2006-04-06 | Sync. | Marco Peereboom | |
2006-04-06 | Add MegaRAID SAS devices | Marco Peereboom | |
2006-04-06 | the synchronise cache path is unique in ami in that it uses two megaraid | David Gwynne | |
commands to emulated one scsi command. i reuse the ccb and pushed it along the scsi setup path twice. when we do this for asynchronous cache syncs this happens with the timeout: timeout_set, timeout_add, timeout_set, timeout_del. from the looks of the timeout code the repeat of the timeout_set/add part can do really interesting things with the linked list holding all the timeouts. this adds a timeout_del in the middle of the two set/adds so the lists are kept sane. | |||
2006-04-06 | kudos to djm for finding an embarrassing bug. using the same variable | David Gwynne | |
as a counter for both an inner and outer loop is not good(tm). ok marco@ | |||
2006-04-05 | enable tqphy(4) here too | Martin Reindl | |
2006-04-05 | Enable an(4) on BE archs now that it works. | Kurt Miller | |
2006-04-05 | Add support for big endian archs. tested by jaredy@ and ok jsg@ | Kurt Miller | |
2006-04-05 | reintroduce ami_complete, a replacement for ami_poll that is built on top | David 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-05 | Teach ffs_update() how to update FFS2 inodes | Pedro Martelletto | |
2006-04-05 | Make ffs_truncate() compatible with FFS2, from FreeBSD | Pedro Martelletto | |
2006-04-05 | add a power hook for bge(4). | Brad Smith | |
From Thordur I. Bjornsson <thib at mi dot is> | |||
2006-04-04 | enable tqphy(4), found on xl(4) | Martin Reindl | |
2006-04-04 | Add a `prefetch threshold' member to the bus_dma_tag_t, so that | Brad Smith | |
eventually we can determine whether or not to allocate a spill page on a per-mapping basis. From NetBSD ok martin@ | |||
2006-04-04 | clean up after Theo's "support mbuf handling in alpha sgmap dma maps" commit. | Brad Smith | |
ok martin@ | |||
2006-04-04 | Revert r1.58, I was on drugs - the array we are locking is one byte per | Miod Vallat | |
page, so the arithmetic was ok. Spotted by david@ | |||
2006-04-04 | Add input routines to the i2s layer to support future Zaurus audio input. | Christopher Pascoe | |
ok robert@ | |||
2006-04-04 | Add pxa2x0_dma_from_fifo to support DMA from internal peripheral FIFOs | Christopher Pascoe | |
to memory. ok robert@ | |||
2006-04-04 | Abort any DMA that is in progress before changing the DMA completion handler, | Christopher Pascoe | |
not after. | |||
2006-04-04 | Fix a comment | Pedro Martelletto | |
2006-04-04 | Configure the I2S controller's GPIOs, not than the USB's. | Christopher Pascoe | |
tested robert@ | |||
2006-04-04 | Small hex-vs-decimal typo from gwk, and tested by me (with cpusig check | Uwe Stuehler | |
disabled because my BIOS sucks). | |||
2006-04-03 | Move scsi_done back under splbio. | Marco Peereboom | |
ok dlg | |||
2006-04-03 | Since we have a run-queue now lets check it in the isr and get io onto | Marco Peereboom | |
the card if there is any still pending. ok dlg | |||
2006-04-03 | Silly dlg hz/500 isnt a whole lot. Also removed busy-wait in | Marco 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-02 | There's no need for some comments to be so utterly cryptic | Pedro Martelletto | |
2006-04-02 | Two 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-02 | Prevent panic when loading pre-3.0 iwi firmware, and give a helpful | Dimitry Andric | |
error message instead. Also return EINVAL for some other error paths. ok damien, deraadt | |||
2006-04-02 | When 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-02 | Cope with FFS2's lazy inode allocation policy, adapted from FreeBSD | Pedro Martelletto | |
2006-04-02 | Set cg_ffs2_time whenever cg_time is set | Pedro Martelletto | |
2006-04-02 | In the cylinder groups, use part of the reserved space to sprinkle a | Pedro Martelletto | |
couple of new fields needed by FFS2, no functional change. | |||
2006-04-02 | regen | Brad Smith | |
2006-04-02 | add another PCI id to the ste(4) driver. | Brad Smith | |
From the Sundance Linux driver. | |||
2006-04-02 | To be able to use the maximum number of IDE/SATA disks on an ICH | Jonathan 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-01 | Revert previous commit, this causes sti1 probe to hang on some models. | Miod Vallat | |
2006-04-01 | use proper types and not fetch iobase that is not used later; damien ok | Michael Shalayeff | |
2006-04-01 | Don't do cylinder group block accounting for FFS2 | Pedro Martelletto | |
2006-04-01 | Mark FFS2 file systems with UM_UFS2 | Pedro Martelletto | |
2006-04-01 | Small fixes from form@: | Alexander Yurchenko | |
- don't allow wildcard port locator - use GPIO_PIN_LOW instead of 0 | |||
2006-04-01 | Correctly map blocks for FFS2 in ufs_bmaparray() | Pedro Martelletto | |
2006-04-01 | Put Damien's latest changes back in, okay deraadt@. | Pedro Martelletto | |
Please note that the driver now requires new firmware (version 3.0). | |||
2006-03-31 | Add sysctl to retrieve the routing table statisitcs. Will be used by netstat | Claudio Jeker | |
instead of kvm access. OK henning@ | |||
2006-03-31 | Backout, causes panics | Pedro Martelletto | |