Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | if a 4.2BSD partition falls partly within the area defined by the | Otto Moerbeek | |
'b' command, subtract the overlapping space from the free space. fixes weird free space calculation on hppa, where converted lif labels start at sector 1, but the 'b' area skips the first cylinder. ok millert@ | |||
2007-06-20 | Regen | Miod Vallat | |
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; ok miod | |||
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 | Better recovery when osiop goes nuts and spits | Miod Vallat | |
osiop0: osiop_select while connected? in loops. Before returning from the interrupt handler, whack the chip. Unfortunately, this causes the few i/o which were queued to time out, but this is better than spinning and eventually panicing. | |||
2007-06-20 | Add missing return value checks for strdup() andd fgetc(). | Moritz Jodeit | |
From Nicholas Marriott. Reminded by ray@. ok ray@ jaredy@ | |||
2007-06-20 | Update for lpt at ssio. | Mark Kettenis | |
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-20 | Add missing `his' command alias. OK joris@. | Xavier Santolaria | |
2007-06-20 | mention https protocol, for which support was added recently. | Steven Mestdagh | |
ok espie@ | |||
2007-06-20 | remove an XXX comment; | Thordur I. Bjornsson | |
Basically the reason why we dont do VOP_ABORTOP()'s in NFS is that sys_rename() actually handles the garbage collection of the pathname buffers, the calls in ufs are actually fluff too, but will be delt with later. ok pedro@ | |||
2007-06-20 | READDIRPLUS is v3 only, bail out if the mount isnt a v3. | Thordur I. Bjornsson | |
Prevents weird things from happening. ok tedu@,pedro@ | |||
2007-06-20 | add ssio(4); | Jason McIntyre | |
2007-06-20 | space required before punctuation; | Jason McIntyre | |
2007-06-20 | Reflect recent changes (UPACKED -> __packed). | Marc Balmer | |
ok jmc. | |||
2007-06-20 | tweaks; | Jason McIntyre | |
2007-06-20 | Allow "log" for nat rules without "pass". | Marco Pfatschbacher | |
OK henning@, ``passt scho'' markus@ | |||
2007-06-20 | "an NPX", not "a NPX"; | Jason McIntyre | |
2007-06-20 | do not try to have cpu.4 list everything - the bus pages already do that; | Jason McIntyre | |
instead, make sure cpu.4 pages point to intro.4; prompted by a diff from Stefan Sperling | |||
2007-06-20 | sprinkle code to deal gracefully with absent packing-lists. | Marc Espie | |
makes it easier for people to recover after a disk crash that leaves /var/db/pkg half-empty. | |||
2007-06-20 | Add support for VIA CX700/VX700 IDE. | Jonathan Gray | |
Tested by jcs@ on a model 2 oqo. | |||
2007-06-20 | regen | Jonathan Gray | |
2007-06-20 | Add a few VIA devices found in jcs' model 2 oqo. | Jonathan Gray | |
2007-06-19 | attach to the novatel ES620 found in the oqo model 2 w/sprint card | joshua stein | |
2007-06-19 | regen | joshua stein | |
2007-06-19 | novatel ES620 CDMA modem found in the oqo model 2 | joshua stein | |
2007-06-19 | Update for com at ssio. | Mark Kettenis | |
2007-06-19 | com at ssio | Mark Kettenis | |
2007-06-19 | sync | Theo de Raadt | |
2007-06-19 | sync | Theo de Raadt | |
2007-06-19 | Add ssio(4). | 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 | add rtlabel to external-tag example | Reyk Floeter | |
2007-06-19 | add support for mapping route labels to AS-external route tags. | Reyk Floeter | |
manpage bits from jmc@ ok norby@ claudio@ | |||
2007-06-19 | Allow ospfd reconfiguration through SIGHUP, add SIGHUP handlers in | Pierre-Yves Ritschard | |
children like in bgpd so that ``pkill -1 ospfd'' works as expected. ok claudio@ | |||
2007-06-19 | don't go through the effort of creating a SIGHUP handler through | Pierre-Yves Ritschard | |
libevent just to ignore it, use SIG_IGN instead. this syncs hoststated with bgpd and (soon) ospfd. | |||
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 | KNF after the recent macro expansion, mostly prototype indendation. | Marc Balmer | |
No binary change. ok uwe. | |||
2007-06-19 | Update history section | Uwe Stuehler | |
2007-06-19 | Man page for SDIO Bleutooth adapter driver, reminded by Alexey Suslikov | Uwe Stuehler | |
2007-06-19 | first draft of a tag solver, needs more flesh to be useful (especially: | Marc Espie | |
transform the lib cache into a tags/lib cache) | |||
2007-06-19 | sometimes, wanting to share code gives insight: disentangle the code | Marc Espie | |
that walks dependencies entirely. It is far less related to the main solver than I thought, it can be built when needed, and own its own state. Much cleaner design. | |||
2007-06-19 | Ignore SIGHUP in bgpd's children to allow the use of pkill -1 bgpd for | Pierre-Yves Ritschard | |
reloading. ``yeah that is good'' henning@ |