| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2004-01-12 | Fix 32bit kernel build, pointed by Juergen Hannken-Illjes. | petrov | |
| 2004-01-12 | change the updating note to say you may need fsck_ffs -b 32 -c 4' | dbj | |
| 2004-01-12 | finish previous (removal of 'reaper' kernel thread): | jdolecek | |
| * move tss_free() call to the new cpu_lwp_free() * g/c cpu_wait() fixes PR kern/24067 by Nicolas Joly | |||
| 2004-01-12 | Back out hasty previous commit -- bitwise arithmetic does not always match | sekiya | |
| integer arithmetic, as demonstrated in this case. | |||
| 2004-01-12 | Wrap more mips3_ operations in MIPS3 defines. | sekiya | |
| 2004-01-12 | Add pic attached at mainbus (for IP12). | sekiya | |
| 2004-01-12 | mips3_* functions aren't available when MIPS3 is not defined, so provide | sekiya | |
| MIPS1 workalikes (which, for the _8 routines, discard the top 32 bits). | |||
| 2004-01-12 | Add pic (memory controller for IP12) driver. Originally written by | sekiya | |
| Steve Rumble, with mostly stylistic changes by myself. | |||
| 2004-01-12 | Completely commit to bitwise operations. Instigated by simonb@ | sekiya | |
| 2004-01-12 | Change one more multiplication to a bit shift. Pointed out by pooka@. | sekiya | |
| 2004-01-12 | Use __insn_barrier() to prevent the compiler reordering splx/splraise | scw | |
| relative to the code they're supposed to protect. | |||
| 2004-01-12 | add checks for a couple of botched superblock upgrade cases | dbj | |
| and report a warning with repair references. | |||
| 2004-01-12 | CRIME revision 1.1 has a bug that affects PIO operations to/from the MACE. | sekiya | |
| The recommended workaround is a 5-10ms delay before and after accesses. Therefore, move the affected bus_space_* operations from bus.h to bus.c and special-case MACE accesses. CRIME accesses are not affected, so introduce SGIMIPS_BUS_SPACE_CRIME and use it as the CRIME tag. My ip32 seems a little bit happier with this change, and my ip22 didn't notice the change. | |||
| 2004-01-12 | ANSIfy, and change a multiplication operation to a bit-shift. | sekiya | |
| 2004-01-11 | g/c process state SDEAD - it's not used anymore after 'reaper' removal | jdolecek | |
| 2004-01-11 | use P_ZOMBIE() macro instead of checking p_state direct | jdolecek | |
| 2004-01-11 | Update the file system snapshot driver: | hannken | |
| - Document the kernel thread. - Rename some functions and variables. - Return EROFS where appropriate. - Use shifts instead of 64-bit divide. - Use a simple_lock to make it MP-safe. - Add M_CANFAIL to malloc to avoid panic on large cluster size. - Allow sparse file for backing store and use VOP_BALLOC() to allocate space. Default size of backing store is the size of the file system. | |||
| 2004-01-11 | fix assertion - non-alive processes are in SZOMB state now | jdolecek | |
| fixes PR kern/24033 by Martin Husemann | |||
| 2004-01-11 | sysctl_vm_updateminmax: fix swapped filemin and execmin. | yamt | |
| the problem reported by Vesbula on current-users@. | |||
| 2004-01-11 | ride 1.6ZH version bump - g/c some unused struct lwp and struct proc | jdolecek | |
| fields (former reaper stuff) | |||
| 2004-01-11 | Avoid ras_lookup call if compiling 32bit kernel (which does not have | martin | |
| __HAVE_RAS). Avoids a compile failure pointed out by Juergen Hannken-Illjes. | |||
| 2004-01-11 | Checkpoint if_mec work (just in case I get hit by a bus). This driver is still | sekiya | |
| not operational. The MII code mostly works, DMA data structures are defined and allocated, but tx/rx logic is missing. | |||
| 2004-01-11 | Make it aware of the new ata configuration syntax. | cube | |
| 2004-01-11 | The limitation for TX/RX DMA of rev. 900B and 635 os the SiS chips also | cube | |
| applies to rev. 0x91 for 96x chipsets. Needed to fix PR 24043, but more stressing testing has to be performed before closing it. | |||
| 2004-01-11 | Reinstate symbolic device names -- I completely forgot about their use. | sekiya | |
| Reminder courtesy soren@ | |||
| 2004-01-10 | The VIDC20 data sheet doesn't define the polarity of the sign bit for | bjh21 | |
| 8-bit VIDC audio. Both Richard Earnshaw and I had guessed that a set bit was positive (the same as normal mu-law), but the AudioWorks manual, and Sound_SoundLog on RISC OS, seem to disagree. Change MULAW_TO_VIDC to match Sound_SoundLog, since the latter is probably definitive. | |||
| 2004-01-10 | remove forgotten debug printf from development. | is | |
| 2004-01-10 | Allow vfs_write_suspend() to wait if the file system is already | hannken | |
| suspending. Move vfs_write_suspend() and vfs_write_resume() from kern/vfs_vnops.c to kern/vfs_subr.c. Change vnode write gating in ufs/ffs/ffs_softdep.c (from FreeBSD). When vnodes are throttled in softdep_trackbufs() check for file system suspension every 10 msecs to avoid a deadlock. | |||
| 2004-01-10 | Since the LOCK and UNLOCK flags are never used, no need in extracting them. | oster | |
| Collapse the related variables down to zero. That means 'flags' is 0 as well. Nuke the extraction macros, a bunch of the variables, and replace 'flags' as well. | |||
| 2004-01-10 | Split out softdep_flushworklist() from softdep_flushfiles() so that | hannken | |
| it can be used to clear the work queue. Cleanup ffs_sync() which did not synchronously wait when MNT_WAIT was specified. Clear the work queue when MNT_WAIT is specified. Result is a clean on-disk file system after ffs_sync(.., MNT_WAIT, ..) From FreeBSD. | |||
| 2004-01-10 | comments in nfs_doio_write. | yamt | |
| 2004-01-10 | add a new bufq strategy, BUFQ_PRIOCSCAN (per-priority CSCAN). | yamt | |
| discussed on tech-kern@ | |||
| 2004-01-10 | bump to 1.6ZH. add b_prio to struct buf. | yamt | |
| 2004-01-10 | reset i/o priority in geteblk() as well. | yamt | |
| 2004-01-10 | store a i/o priority hint in struct buf for buffer queue discipline. | yamt | |
| 2004-01-10 | Rounding to the nearest multiple of 2 with roundup(constant, 2) is | dyoung | |
| easier to read than `constant + 1'. | |||
| 2004-01-10 | In atw_rf3000_tune, enable I/O with the modem and RF front-end | dyoung | |
| "just in time" instead of at the top of the function. | |||
| 2004-01-10 | Do not set IEEE80211_F_IBSSON in hostap mode. Treat hostap-mode | dyoung | |
| when the link condition changes by returning. Note that hostap mode still does not work in atw, and ADMtek has told me that the hardware will not support it, but I remain hopeful. | |||
| 2004-01-10 | Report received-early interrupt with a debug printf. | dyoung | |
| Print the Serial EEPROM and the MAC address it contains when atw_debug > 0, because atw_debug > 1 is a little too strict. | |||
| 2004-01-10 | Misc. cosmetic changes. | dyoung | |
| Add a debug printf to the input path. | |||
| 2004-01-10 | Use new docs provided by RFMD to give some meaning to | dyoung | |
| previously-undocumented registers and magic numbers on the RF3000 baseband. | |||
| 2004-01-10 | Get rid of empty #if 0/#endif stanza. | dyoung | |
| 2004-01-10 | Bus-spacify ip2x core logic. Eliminate magic numbers. | sekiya | |
| co | |||
| 2004-01-10 | Add register definitions for INT2 interrupt controller. | sekiya | |
| 2004-01-10 | Add watchdog and bus error handling functions (these features live in | sekiya | |
| IMC space, thus should be handled here rather than in ip2x.c) | |||
| 2004-01-10 | Clean up console device selection logic. | sekiya | |
| 2004-01-10 | de-__P, sprinkle some KNF. | sekiya | |
| 2004-01-10 | Add framework for gio card identification based on product ID. devlist2h.awk | sekiya | |
| was borrowed from sys/dev/pcmcia. | |||
| 2004-01-10 | don't include sys/param.h; the man page says that the application should | christos | |
| do that. per discussions in core. | |||
| 2004-01-10 | iCleanup the RF_CREATE_PARAM3(). Middle two "arguments" were nothing | oster | |
| but 0 in all cases. | |||
