Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-20 | A line got lost while hand-editing diffs... | Miod Vallat | |
2007-11-20 | On 88110, use a shorter path in pmap_is_modified(), since we perform | Miod Vallat | |
accurate mod tracking through the write fault traps; there is no need to walk the pv list since, unlike on 88200, hardware does not set PG_M or PG_U in page table entries. | |||
2007-11-20 | Move 88110 trap-on-write processing from two duplicated sections in trap.c to | Miod Vallat | |
a single function in pmap.c, which will do the right thing and also perform mod/ref vm_page flags accounting. | |||
2007-11-20 | Fix MP locking issues when processing data access faults on 88110, similar | Miod Vallat | |
to the fix already applied to 88100. | |||
2007-11-20 | Overhaul of the pmap debug messages. They now provide slightly better | Miod Vallat | |
information, and are easier to parse. While there, a few never-happening checks move from option DIAGNOSTIC to option PMAPDEBUG. | |||
2007-11-20 | Fix setregs() on 88110, so that binaries do not skip their first instruction. | Miod Vallat | |
Makes binaries beyond init(8) running on MVME197, to some extent. | |||
2007-11-20 | In data_access_emulation(), make sure that if we want the pipeline replay | Miod Vallat | |
to be disabled, this effectively disables the three slots, instead of only the first. This will only make (rare) things faster. | |||
2007-11-20 | Fix possible mbuf leak on error. ok reyk@ | Can Erkin Acar | |
2007-11-19 | armish and zaurus too | Theo de Raadt | |
2007-11-19 | 802.11 radiotap + various tweaks | Damien Bergamini | |
2007-11-19 | pairwise keys always have an ID equal to 0. | Damien Bergamini | |
2007-11-19 | all TX rings have the same fixed size (256 entries) and this is not | Damien Bergamini | |
configurable so simplify rings allocation a bit. | |||
2007-11-19 | sigh, amd64 still uses that stupid acpi_enabled variable... | Theo de Raadt | |
2007-11-19 | softc's come initialized to 0, you know... | Theo de Raadt | |
2007-11-19 | store revision; from jsg | Theo de Raadt | |
2007-11-19 | supply a place to store acpi version; from jsg | Theo de Raadt | |
2007-11-19 | Initialize sc_facs earlier. | Mark Kettenis | |
ok deraadt@, beck@, canacar@ | |||
2007-11-19 | Don't overwrite a core file owned by a different user. Makes the code | Todd C. Miller | |
match the comment. OK deraadt@ | |||
2007-11-19 | Remove the #define ENCDEBUG that slipped through somehow. | Marco Pfatschbacher | |
OK hshoexer@ | |||
2007-11-19 | When ignoring whether FR turns on or not, we should still set FRE, | Christopher Pascoe | |
otherwise we risk leaving the port disabled after a stop/start during error recovery. ok dlg@ | |||
2007-11-18 | Add a few Cassini+ registers. | Mark Kettenis | |
2007-11-18 | backout 1.562 since it triggers the problem described in pr 5648 | Theo de Raadt | |
please close the pr after another solution is found for both problems | |||
2007-11-18 | Don't add identity mappings for ISA interrupts for which we have an override. | Mark Kettenis | |
Tested by many; seems to fix ian@'s evil Compaq, at least with GENERIC.MP. | |||
2007-11-18 | Add missing locking around ktrsyscall() call. | Mark Kettenis | |
2007-11-18 | eephy_mii_phy_auto() was deleted in r1.38. So delete the declaration too. | Kenneth R Westerback | |
2007-11-18 | Fix for PR 5642 & 5643. Report and testing Martijn Rijkeboer | Marco Peereboom | |
<martijn at bunix dot org> ok deraadt kettenis | |||
2007-11-18 | Sync struct ifaltq to match struct ifqueue. | Marco Pfatschbacher | |
I wonder why 64-bit archs have not been bitten by this. OK mcbride@, henning@ | |||
2007-11-18 | revert previous commit as requested by kettenis and deraadt. | Brad Smith | |
2007-11-18 | regen | Brad Smith | |
2007-11-18 | add the Planex GW-US54GXS adapter. | Brad Smith | |
From the Linux ZyDAS driver. ok dlg@ | |||
2007-11-18 | remove use of static. | Brad Smith | |
ok dlg@ | |||
2007-11-17 | - move the re/bwi CardBus entries in the GENERIC kernel config into | Brad Smith | |
the CardBus section. - add forgotten re CardBus entry to the RAMDISK kernel config. ok dlg@ | |||
2007-11-17 | Allow pci_get_capability to decode capabilities for PCI bridges. | Brad Smith | |
From jmcneill NetBSD ok kettenis@ dlg@ | |||
2007-11-17 | Print the type that's wrong. | Mark Kettenis | |
2007-11-17 | update the physical address of the RX buffer after bus_dmamap_load() | Damien Bergamini | |
in the case where the old buffer is remapped. | |||
2007-11-17 | fix reading of EEPROM for some adapters. | Damien Bergamini | |
from Benjamin Close @ FreeBSD | |||
2007-11-17 | AMD Geode CS5536 GPIO can invert input and output pins. | Marc Balmer | |
2007-11-17 | GPIO pins can be programmed to invert input or output on some devices. | Marc Balmer | |
Introduce new flags, GPIO_PIN_INVIN and GPIO_PIN_INVOUT, for this. ok grange | |||
2007-11-17 | - Add more LED support, like activity blinking (though just supporting | Marcus Glocker | |
some devices yet). - Calculate RX rate which can be used later in bpf_mtap(). Diff ported from DragonFlyBSD, tested by some. | |||
2007-11-17 | Buffers are not necessarily NUL-terminated, so use memcpy instead of strlcpy | Mark Kettenis | |
to convert a buffer into a string. ok canacar@, marco@ | |||
2007-11-17 | sync | Damien Bergamini | |
2007-11-17 | fix uath entry. | Damien Bergamini | |
from FreeBSD | |||
2007-11-17 | update ZD1211B firmware. | Damien Bergamini | |
this new firmware is supposed to fix a hardware reset problem when the system is rebooted with the zyd device attached. from FreeBSD | |||
2007-11-17 | Disable jumbo allocator until the low number of buffers case | Jonathan Gray | |
is better handled. This will likely resolve stalls some people are seeing under high load. ok damien@ | |||
2007-11-17 | implement ic_set_key() and ic_delete_key() callbacks. | Damien Bergamini | |
2007-11-17 | RT2560+RT2661: update the physical address in the RX descriptor after | Damien Bergamini | |
bus_dmamap_load() in the case where the same mbuf is reloaded. RT2661: remove a 2x prototype, fix an error message. | |||
2007-11-17 | make it clear in the code and in the man page that the rate2plcp and | Damien Bergamini | |
plcp2rate functions use plcp codes in most-significant-bit-first format (R4-R1). some drivers like wpi(4) and iwn(4) want plcp codes in lsb-first format so they can't use those functions. also the IEEE standard uses R1-R4 notation so this can be a bit confusing for those refering to it. use u_int8_t for plcp code and rate instead of int. | |||
2007-11-17 | Rename fiber TBI flag from BGE_TBI to BGE_PHY_FIBER_TBI. No functional change. | Brad Smith | |
ok dlg@ | |||
2007-11-17 | use tables to determine the best control to use for play.gain, record.gain | Alexandre Ratchov | |
and monitor_gain; this makes play.gain always usable as general purpose volume knob even on devices that don't have outputs.master. ok jakemsr@, deanna@ | |||
2007-11-17 | sync error messages with man page's DIAGNOSTICS section. | Damien Bergamini | |