Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-24 | rework sensor tasks to use the kernels generic workq rather than a special | David Gwynne | |
kernel thread of its own. the api has changed (which will be fixed in the manpage shortly) so all the users of sensor tasks that i can find have been fixed too. noone tested, so its going in to force people to run with it. "put it in" deraadt@ | |||
2007-06-23 | Enable workaround for decrementer exception problem. | Dale Rahn | |
2007-06-23 | net80211 growth means vr(4) goes away for now | Theo de Raadt | |
2007-06-22 | PCI malo(4) works | Martin Reindl | |
from Janjaap van Velthooven | |||
2007-06-21 | Brace got lost in rev 1.51. | Miod Vallat | |
2007-06-21 | Enable memory above 256MB again now that bus_dma has been fixed. | Miod Vallat | |
2007-06-21 | Extent sgi bus_dma to cope with different views of memory: non-contiguous | Miod Vallat | |
for the cpu, contiguous from different bases for devices. This allows memory above 256MB to be used with bus_dma (and we had really been lucky with the first few large-memory builds). Information about memory accesses taken from Linux. | |||
2007-06-21 | Fix microtime to not lose clocik ticks, gives us among other things, real | Miod Vallat | |
ping times on slow links; from mickey | |||
2007-06-21 | Simple optimizations: | Miod Vallat | |
- in __pmap_pv_enter, only walk the pv list to search for writeable mappings if we are ading a readonly mapping. - im pmap_protect, do not invoke pmap_extract(), instead directly extract the paddr from the pte we have already computed a few lines above. | |||
2007-06-21 | Attach interrupt counters to intc interrupt sources too, so that clock | Miod Vallat | |
interrupts get counted; from mickey | |||
2007-06-20 | Do not hardcode imask[] size when intializing it. | Miod Vallat | |
2007-06-20 | These drivers were abusing b_cylinder to store device-specific information | Miod Vallat | |
in strategy(), and were reusing it in start(). I first considered introducing a b_rawblkno field in struct buf, as has been done in NetBSD, to stop this abuse. However, it does not cost more to simply move the device-specific ``was-b_cylinder'' computation to the start() routine. Plus we get type fixes (daddr64_t) for free, although this does not really matter for these pedro-sized devices. Thus we do not need to grow struct buf for these devices which really ought to live in your Attic (and my machineroom, of course). hp300 HP-IB tested, vax mfm not, but the logic is the same. | |||
2007-06-20 | alpha kernel have wsmux but not the actual devices; PR #5469 from janjaap | Miod Vallat | |
2007-06-20 | Add file such that a kernel with lpt at ssio actually compiles. | Mark Kettenis | |
2007-06-20 | b_cylinder does not need to be set on the callpath down into drivers. | Theo de Raadt | |
cpu_disklabel can go away, since nothing anymore needs to use it.. except these two drivers. knock out that code for now to let it compile while miod gets his fix ready for these drivers. | |||
2007-06-20 | b_cylinder does not need to be set on the callpath down into drivers. | Theo de Raadt | |
cpu_disklabel can go away, since nothing anymore needs to use it; ok miod | |||
2007-06-20 | lpt at ssio | Mark Kettenis | |
2007-06-20 | In vunmapbuf(), explicitely remove mappings before invoking uvm_km_free(). | Miod Vallat | |
Even if the latter would end up removing the mappings by itself, it would do so using pmap_remove() because phys_map is not intrsafe; but some platforms use pmap_kenter_pa() in vmapbuf(). By removing the mappings ourselves, we can ensure the remove function used matches the enter function which has been used. Discussed and theoretical ok art@ | |||
2007-06-20 | Protect pool operations with splvm. | Miod Vallat | |
2007-06-20 | Make sure IPL_CLOCK blocks device interrupts. | Miod Vallat | |
2007-06-19 | com at ssio | Mark Kettenis | |
2007-06-19 | Add ssio(4), a driver for the castrated National Semiconductor PC87560 | Mark Kettenis | |
Sucky SuperIO chip. For now it only provides support for the i8259-compatible PICs on the chip, but that support is necessary to make USB interrupts work. | |||
2007-06-19 | Empty another cpu_disklabel. In this case read in the boot | Kenneth R Westerback | |
block/native label as needed rather than keeping it in cpu_disklabel. Also a number of assorted minor tweaks to reduce the delta to sparc64 disksubr.c. 'get this in' deraadt@ | |||
2007-06-19 | Mark PDE entries with PG_U and PG_M. We never need that information from the | Artur Grabowski | |
mmu, it slightly speeds up tlb misses and according to an errata from AMD it can actually work around a bug in the mmu. toby@ ok | |||
2007-06-18 | Lookup interrupt routing info based on elroy(4) bus number. | Mark Kettenis | |
Fix and simplify debug code that prints the interrupt routing info while I'm there. | |||
2007-06-18 | Calculate the disklabel checksum *after* filling in all the fields in | Kenneth R Westerback | |
the disklabel. ok deraadt@ | |||
2007-06-18 | this is the sgi disklabel, mips64 is not the same | Theo de Raadt | |
2007-06-18 | this is the sgi disksubr, not some mythical "all mips64 architectures can ↵ | Theo de Raadt | |
use it" balony | |||
2007-06-18 | Don't use cpu_disklabel as local storage. Use local variables and discard | Kenneth R Westerback | |
the unneeded info when done with it. Another empty struct cpu_disklabel. ok deraadt@ | |||
2007-06-18 | Don't use cpu_disklabel as local storage. Use local variables and discard | Kenneth R Westerback | |
the unneeded info when done with it. Another empty struct cpu_disklabel. ok deraadt@ | |||
2007-06-18 | Use a shorter form to load XKPHYS constants in .S code, shaves a few text | Miod Vallat | |
bytes, no functional change. | |||
2007-06-18 | Disable instruction reordering around cpl assignments. | Miod Vallat | |
2007-06-18 | delete comment above cpu_disklabel that is not needed | Theo de Raadt | |
2007-06-18 | move comment to right place | Theo de Raadt | |
2007-06-18 | split out dpme disklabel reading, simplifying things significantly | Theo de Raadt | |
and making it look a lot more like other architectures; tested by myself and drahn and gwk | |||
2007-06-18 | simplify error return case from writedisklabel(), too | Theo de Raadt | |
2007-06-18 | simplify error return case from writedisklabel() | Theo de Raadt | |
2007-06-18 | simplify error return case from writedisklabel() | Theo de Raadt | |
2007-06-18 | more comments that are different | Theo de Raadt | |
2007-06-18 | using same words in similar code sequences is good | Theo de Raadt | |
2007-06-18 | this XXX has no place here anymore. extended partition label writing | Theo de Raadt | |
might even work now (ie. if it works, it is because finding the label location is now MI code shared for the read & write paths) | |||
2007-06-18 | include not needed | Theo de Raadt | |
2007-06-18 | msg is already gauranteed to be NULL | Theo de Raadt | |
2007-06-17 | make it compile | Martin Reindl | |
2007-06-17 | Eliminate a few straggling 'labelsector' field declarations from | Kenneth R Westerback | |
cpu_disklabel's. 'labelsector' is not used anywhere according to grep. 'go for it' deraadt@ | |||
2007-06-17 | Get interrupt information from PDC and use it to program the IO SAPIC. | Mark Kettenis | |
Needed to make edge triggered interrupts work. | |||
2007-06-17 | Disable memory above 256MB for now, it triggers bugs (probably related to | Miod Vallat | |
cache operations). | |||
2007-06-17 | Coerce this into compiling. | Miod Vallat | |
2007-06-17 | Some alpha (or SRM) designs use level 3 for i/o interrupts, instead of the | Miod Vallat | |
more commonly encountered level 4. Do not complain in splassert() in this case (this is similar to the older vsbus vax machines workaround). | |||
2007-06-17 | (error in commit messages to other similar MI files; see position in | Theo de Raadt | |
ChangeLog to see other files) avoid pulling in machine/disklabel.h when sys/disklabel.h is a better choice |