- 23 Jan, 2003 1 commit
-
-
Ivan Kokshaysky authored
- make irongate_ioremap() use generic __alpha_remap_area_pages(); - remove huge debugging printk; - AGP remapping hardware disabled for now. Any attempt to use it would result in corrupted memory; - albacore (UP1500) support: - handle differences between AMD-761 (UP1500) and AMD-751 (UP1000/1100) chipsets, namely ECC mode/status and pci_mem registers; - customized nautilus_init_pci() to minimize amount of system memory consumed by PCI MMIO for 4Gb configuration. Ivan.
-
- 21 Jan, 2003 1 commit
-
-
Jeff Wiedemeier authored
alpha show_interrupts was using irq as the cpu index and cpu as the irq index fpr the kstat_cpu(cpu).irqs[irq] lookup. /jeff
-
- 20 Jan, 2003 3 commits
-
-
Jeff Wiedemeier authored
Use CONFIG_EARLY_PRINTK to trigger disable_early_printk() call in console_init (tty_io.c) to turn off "srmcons" prints rather than the existing code in time.c. /jeff
-
Jeff Wiedemeier authored
Remove unused marvel_srmcons_allowed implementation. /jeff
-
Richard Henderson authored
From Jeff Wiedemeier: How about this.. This version no longer piggy backs on ttyS0 (it actually doesn't touch any files outside arch/alpha/kernel at all). It does use a dynamic major for the tty piece of the driver. From userspace, /dev/console is ok for most uses, but because of the 'noctty = 1' at tty_tio.c:1329 (in the IS_SYSCONS_DEV section) using /dev/console cannot result in a controlling tty so some things, like 'resize' and bash job control don't work. For those uses, however, it's easy enough to parse /proc/devices on the way up to get the major number and create the specific device for the tty side of the driver. I made a distinction in kernel options as well. "srmcons" specifically requests the early prints (as before) and "console=srm" requests the full driver, including the early prints. The two options can be combined with "console=srm" behavior resulting. The other change is that if "console=srm" is specified, I don't unregister_srm_console before console_init any more - that only happens in the "srmcons" case. That way preferred console selection remains stable and "console=srm" doesn't result in the early messages being repeated when the driver re-registers. The use of "srmcons_allowed" is also eliminated due to the "srmcons" vs. "console=srm" distinction.
-
- 19 Jan, 2003 2 commits
-
-
Richard Henderson authored
PAL unique value. Support threaded core dumps.
-
Jeff Wiedemeier authored
Mark the boot cpu online in smp_prepare_boot_cpu instead of smp_prepare_cpus so that early printks (srmcons) work with alpha smp kernels. /jeff
-
- 17 Jan, 2003 2 commits
-
-
Jeff Wiedemeier authored
This defines NODE_BALANCE_RATE in include/asm-alpha/topology.h. Value is pulled from asm-generic/topology.h. /jeff
-
Ivan Kokshaysky authored
This allows to set the AGP aperture size from command line. Default is 64Mb. Ivan.
-
- 16 Jan, 2003 31 commits
-
-
Linus Torvalds authored
-
-
Russell King authored
__virt_to_bus/__bus_to_virt depended on INTEGRATOR_HDR0_SDRAM_BASE Unfortunately, this is defined in arch-integrator/platform.h, and we really don't want to include it in memory.h. We instead use BUS_OFFSET, which will eventually depend on the CPU number in the system.
-
Russell King authored
Only default BLK_DEV_IDEDMA on BLK_DEV_IDEDMA_ICS if ARCH_ACORN is set, not if ARM is set. There are PCI ARM systems out there!
-
Russell King authored
Ensure that we clean up properly after initialisation error, releasing all claimed resources in an orderly manner and returning the correct error code.
-
Russell King authored
-
Russell King authored
-
Russell King authored
-
Russell King authored
-
Russell King authored
Add cfbfillrect / cfbcopyarea / cfbimgblt objects for SA1100fb. Remove redundant "pm" member.
-
Jeff Wiedemeier authored
Found a buglet in the marvel code -- doesn't change the number of IRQS just the logic to get there.. This applies on top of the other marvel code. /jeff
-
Richard Henderson authored
into kanga.twiddle.net:/home/rth/linux/axp-2.5
-
Richard Henderson authored
-
Richard Henderson authored
to header files where they belong.
-
Richard Henderson authored
of AGP and SRMCONS patches.
-
Richard Henderson authored
From Jeff.Wiedemeier@hp.com.
-
Richard Henderson authored
(Titan / Marvel), Kconfig and headers. From Jeff Wiedemeier.
-
Martin J. Bligh authored
Patch from Erich Focht This adds a hook to rebalance globally across nodes every NODE_BALANCE_RATE iterations of the rebalancer. This allows us to easily tune on an architecture specific basis how often we wish to rebalance - machines with higher NUMA ratios (more expensive off-node access) will want to do this less often. It's currently set to 100 for NUMA-Q and 10 for other machines. If the imbalance between nodes is > 125%, we'll rebalance them. The hook for this is added to the NUMA definition of cpus_to_balance, so again, no impact on non-NUMA machines.
-
Martin J. Bligh authored
Patch from Michael Hohnbaum This adds a hook, sched_balance_exec(), to the exec code, to make it place the exec'ed task on the least loaded queue. We have less state to move at exec time than fork time, so this is the cheapest point to cross-node migrate. Experience in Dynix/PTX and testing on Linux has confirmed that this is the cheapest time to move tasks between nodes. It also macro-wraps changes to nr_running, to allow us to keep track of per-node nr_running as well. Again, no impact on non-NUMA machines.
-
Martin J. Bligh authored
Patch from Martin J. Bligh This adds a small hook to the find_busiest_queue routine to allow us to specify a mask of which CPUs to search over. In the NUMA case, it will only balance inside the node (much cheaper to search, and stops tasks from bouncing across nodes, which is very costly). The cpus_to_balance routine is conditionally defined to ensure no impact to non-NUMA machines. This is a tiny NUMA scheduler, but it needs the assistance of the second and third patches in order to spread tasks across nodes.
-
Christoph Hellwig authored
Another left-over from ancient module code, it was supposed to return non-zero if the module has a use count, but currently it always evaluates to 0. There are a few users of different types: (1) ioctl that perform a while(MOD_IN_USE) MOD_DEC_USE_COUNT loop. Just rip them out, we now have forced module unloading. (2) printk's that moan if the use-count in not zero in the exitfunc. Just rip them out, this can't happen. (3) if(MOD_IN_USE) MOD_DEC_USE_COUNT constructs in ->close of a few serial drivers. Just remove the conditional, we did a MOD_INC_USE_COUNT in ->open. (4) This one is interesting: drivers/sbus/char/display7seg.c uses the module use count to track openers. Replace this with an atomic_t. In addition remove tons of stale comments in network driver that aren't understandable for anyone who doesn't know ancient Linux module semantics.
-
Andi Kleen authored
x86-64 updates for 2.5.58. Changes only x86-64 specific files. - Rewrote module allocation. Lots of bugs fixed. Module loading should work now again. - Kconfig help fixes from Randy Dunlap - Makefile cleanups from Pavel Machek and Sam Ravnborg - Assembly cleanups from Pavel - defconfig update - Better strlen_user/strnlen_user - Merge with i386: new ptrace commands, 32bit vsyscall signal trampolines new deactivate_mm, add asm/bug.h - Make sure initramfs is freed after booting (thanks to Kai for the hint) - User per cpu data for profile counters (Ravikiran Thirumalai) - 32bit compat_* updates from Stephen Rothwell - Fix race in context switch. The exception handler for bogus segment loads in __switch_to needs to keep interrupts disabled, otherwise an interrupt can deadlock on scheduler locks. Also make sure they don't printk or set oops_in_progress during printk because printk does a wake_up too. - Disable 64bit GS base changes for processes. I cannot get it to work reliably. - Clear IOPL on kernel entry
-
Ivan Kokshaysky authored
From Jeff.Wiedemeier@hp.com: Add platform-specific callin for SMP.
-
Ivan Kokshaysky authored
From Jeff.Wiedemeier@hp.com: - Only create smp_affinity /proc nodes if a set_affinity handler is provided. - Limit the number of irq nodes that will be created in /proc to avoid overfilling the /proc inode space.
-
Richard Henderson authored
a titan specific kernel.
-
http://linux-voyager.bkbits.net/eisa-sysfs-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Marc Zyngier authored
Without it, unloading a module leads to some unpleasant oops...
-
Marc Zyngier authored
-
Marc Zyngier authored
Please note that the naming DB is now completely optional. If there is no eisa.ids in the drivers/eisa/ directory, build will behave as if CONFIG_EISA_NAMES is disabled. So this patch can be left out if there is any objection.
-
Marc Zyngier authored
Base patch adding sysfs support for the EISA bus
-
Ivan Kokshaysky authored
From Jeff.Wiedemeier@hp.com: Update titan system support include AlphaServer DS25, AGP, enhanced machine check handling.
-