- 26 Nov, 2002 40 commits
-
-
Miles Bader authored
Change type of v850 function `gbus_int_disable_irqs' to void
-
Miles Bader authored
Make v850 syscall6 macro support both old and new gcc versions
-
Miles Bader authored
Add id for v850 `nb85e_uart' to serial_core.h
-
Miles Bader authored
Give a compile-time error on the v850 if MAX_ORDER is too large
-
Miles Bader authored
Make the v850 leds driver's seek routine always return a value
-
Miles Bader authored
Update make variable used by initramfs `binary blob' creation on v850
-
Miles Bader authored
Change the default baud rate of the `nb85e_uart' driver to 115200
-
Miles Bader authored
Tweak some v850 name strings [basically only affects printed output]
-
Miles Bader authored
Random whitespace tweaks in v850 files
-
Miles Bader authored
Add my name to CREDITS file
-
Miles Bader authored
Update includes in v850 files to reflect recent header changes
-
Miles Bader authored
Update v850 to use kstat_cpu in irqs.c
-
Miles Bader authored
The v850 doesn't need sys_old_getrlimit
-
Miles Bader authored
Add TASK_UNMAPPED_BASE for v850
-
Miles Bader authored
Update v850 usage of do_fork to supply new args
-
Miles Bader authored
Add v850 support for initramfs
-
Miles Bader authored
Random minor fixes for v850 `anna' platform
-
Miles Bader authored
Update `nb85e_uart' driver for recent serial framework changes
-
Miles Bader authored
Make NB85E_UART_CKSR_MAX_FREQ (in nb85e_uart driver) overridable [The proper value is CPU-dependent]
-
Miles Bader authored
Add v850 nanosecond stat fields
-
Miles Bader authored
Add support for AS85EP1 platform to v850 arch
-
Miles Bader authored
Add v850 versions of dump_stack and show_stack Also move v850 show_regs to same source file (bug.c)
-
Miles Bader authored
Add v850 support for new module loader
-
Miles Bader authored
Add asm macros on v850 so the size of asm data objects can be recorded [This just makes it easier to see the sizes using readelf or whatever]
-
Miles Bader authored
Fix some minor type problems in v850 code [Mostly signed/unsigned mismatches]
-
Miles Bader authored
Consolidate various v850 platform banner printks
-
Andrew Morton authored
cpu_buffer.c needs errno.h for ENOMEM.
-
-
http://linux-acpi.bkbits.net/linux-acpiLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
bk://lsm.bkbits.net/linus-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/lsm-tree
-
Andries E. Brouwer authored
That annoying ldm message is just debugging output somebody forgot to remove.
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/lsm-2.5
-
Andy Grover authored
into groveronline.com:/root/bk/linux-acpi
-
-
Andrew Morton authored
Shrinking a huge number of dentries or inodes can hold dcache_lock or inode_lock for a long time. Not only does this hold off preemption - holding those locks basically shuts down the whole VFS. A neat fix for all such caches is to chunk the work up at the shrink_slab() level. I made the chunksize pretty small, for scalability reasons - avoid holding the lock for too long so another CPU can come in, acquire it and go off to do some work.
-
Andrew Morton authored
Running sync_blockdev() inside lock_kernel causes long scheduling stalls under some conditions because the lock_kernel() disables preemption. We don't need the BKL across sync_blockdev(), so move it down a bit. This is a minimal fix - we probably don't need BKL for much at all in there.
-
Andrew Morton authored
When the VM is under heavy load and a page allocator caller is holding the BKL there can be several-millisecond scheduling stalls. So add a cond_resched() at every 32nd page (approx).
-
Andrew Morton authored
From Hugh. Remove some strangeness in the swapoff path. "it dates from the days when that block set *swap_map to 0, but in 2.4.13 I changed it to set *swap_map to 1 and delete_from_swap_cache afterwards: it's been wrong ever since, hasn't it? swap_list_locking can go, it was there to guard nr_swap_pages for si_swapinfo; the swap_device_locking has to stay because swap_map is an array of unsigned _shorts_."
-
Andrew Morton authored
There are a couple of statistical functions which scan the entire swap map counting things up, to display in /proc. On my machine, these hold spinlocks for 19 milliseconds which is unacceptable from a scheduling latency point of view. And an application which sits in a loop reading /proc/swaps on a large machine is probably a decent denial-of-service attack - it will limit swap allocations to tens of pages per second. So add a counter to swap_info_struct and use it to track how many pages are currently in use, so those reporting functions don't need to add them all up.
-
Andrew Morton authored
This is the first in a little batch of patches which address long-held locks in the VFS/MM layer which are affecting our worst-case scheduling latency, and are making CONFIG_PREEMPT not very useful. We end up with a worst-case of 500 microseconds at 500MHz, which is very good. Unless you do an exit with lots of mmapped memory. unmap_page_range() needs work. Some of these patches also add rescheduling points for non-preemptible kernels - where I felt that the code path could be long enough to be perceptible. Three places in the generic pagecache functions need manual rescheduling points even for non-preemptible kernels: - generic_file_read() (Can hold the CPU for seconds) - generic_file_write() (ditto) - filemap_fdatawait(). This won't hold the CPU for so long, but it can walk many thousands of pages under the lock. It needs a lock drop and scheduling point for both preemptible and non-preemptible kernels. (This one's a bit ugly...)
-