- 30 Jun, 2004 12 commits
-
-
bk://linux-dj.bkbits.net/agpgartLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Dave Jones authored
Signed-off-by: Kris Kersey <augustus@linuxhardware.org> Signed-off-by: Dave Jones <davej@redhat.com>
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Mika Kukkonen authored
-
Dave Jones authored
Signed-off-by: Dave Jones <davej@redhat.com>
-
- 29 Jun, 2004 28 commits
-
-
bk://cifs.bkbits.net/linux-2.5cifsLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Linus Torvalds authored
Use NULL, not 0, where appropriate.
-
bk://bk.arm.linux.org.uk/linux-2.6-rmkLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.6/linux
-
Russell King authored
- Remove 'arc' machine name from Makefile - clk_set_rate() should return non-zero atm. - proc-sa1100.S doesn't need asm/ptrace.h - update mach-types - kill line of spaces in clock.h
-
Russell King authored
-
Russell King authored
Generate SIZEOF_MACHINE_DESC using asm-offsets method rather than relying on people updating the definition in asm/mach/arch.h
-
Russell King authored
This places arch_adjust_zones along side ISA_DMA_THRESHOLD. These two are related, but having them in separate files means its not obvious that they are. ISA_DMA_THRESHOLD is a DMA mask which must be defined such that it matches the memory handed out by GFP_DMA, which in turn is controlled by arch_adjust_zones.
-
Russell King authored
This allows machine classes to override ISA_DMA_THRESHOLD as necessary.
-
Russell King authored
Clean up bzImage target, remove a couple of obsolete testing targets, and add better bootpImage help text.
-
Russell King authored
This fixes the buggy decompressor assembly, and fixes PCMCIA IO to use the correct byte lane when accessing certain PCMCIA cards.
-
Russell King authored
Static data causes GOTOFF relocations to be used, which won't work because we want to relocate the .data section separately from the .text section. Therefore, force all data to be nonstatic.
-
Russell King authored
- use 'Image' target for kernel image to be compressed rather than duplicating its generation. - use .incbin-based generation of ELF objects from binary data rather than 'ld'-based generation.
-
Russell King authored
-
Russell King authored
-
Russell King authored
For clarity and consistency, use the same name for makefile and linker symbols.
-
bk://linux.bkbits.net/linux-2.5Steve French authored
into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs
-
Russell King authored
Since this is where these two variables are used, it makes sense to have them in that makefile. Also, consolidate "targets" initialisation, fixes a missing FORCE dependency for the uImage rule, and remove more FTVPCI code.
-
Oleg Nesterov authored
mm_struct.used_hugetlb used to eliminate costly find_vma() from follow_page(). Now it is used only in ia64 version of follow_huge_addr(). I know nothing about ia64, but this REGION_NUMBER() looks simple enough to kill used_hugetlb. There is debug version (commented out) of follow_huge_addr() in i386 which looks at used_hugetlb, but it can work without this check. Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
David Eger authored
radeonfb: fix 16bpp copyarea() bug It turns out the bug was due to my mis-copying a certain set of flags from the x.org tree. Signed-off-by: David Eger <eger@havoc.gtf.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Peter Chubb authored
When using gcc 3.3.3 on alpha, the current BK head doesn't compile. - there's an external declaration for abs() in the same scope as a macro definition in arch/alpha/time.c - The compiler is picky about `const' declarations, which breaks on bitops.h. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Dave Hansen authored
While writing some analysis tools for memory hot-remove, we came across a single page which had a ->count that always increased, without bound. It ended up always being the zero page, and it was caused by a leaked reference in some do_wp_page() code that ends up avoiding PG_reserved pages. Basically what happens is that page_cache_release()/put_page() ignore PG_reserved pages, while page_cache_get()/get_page() go ahead and take the reference. So, each time there's a COW fault on the zero-page, you get a leaked page->count increment. It's pretty rare to have a COW fault on anything that's PG_reserved, in fact, I can't think of anything else that this applies to other than the zero page. In any case, it the bug doesn't cause any real problems, but it is a bit of an annoyance and is obviously incorrect. We've been running with this patch for about 3 months now, and haven't run into any problems with it. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Tom Rini authored
<linux/fd.h> references __user which is defined in <linux/compiler.h>. Signed-off-by: Tom Rini <trini@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Jörn Engel authored
- fix documentation - use $(src) in Makefile (fixes cross-compilation) Both spottet by Geert Uytterhoeven Signed-off-by: Jörn Engel <joern@wohnheim.fh-wedel.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Jörn Engel authored
Add m68k support to checkstack.pl Regular expression combination by Andres Schwab Signed-off-by: <geert@linux-m68k.org> Signed-off-by: Jörn Engel <joern@wohnheim.fh-wedel.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
James Bottomley authored
This patch implements dma_get_required_mask() which may be used by drivers to probe the optimal DMA descriptor type they should be implementing on the platform. I've also tested it this time with the sym_2 driver...making it chose the correct descriptors for the platform. (although I don't have a 64 bit platform with >4GB memory, so I only confirmed it selects the 32 bit descriptors all the time...) Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Mika Kukkonen authored
Well, one of these (fs/block_dev.c) is little non-trivial, but i felt throwing that away would be a shame (and I did add comments ;-). Also almost all of these have been submitted earlier through other channels, but have not been picked up (the only controversial is again the fs/block_dev.c patch, where Linus felt a better job would be done with __ffs(), but I could not convince myself that is does the same thing as original code). Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Matt Domsch authored
Currently, the x86/x86_64 real-mode kernel setup code reads and stores the mbr_signature (4 bytes in the MBR at offset 440 decimal) for BIOS int13h device 80h only. This is useful, but not as useful as if we stored such signatures for all int13h devices. Think OS installer wanting to set up md software RAID across several BIOS disks. Patch below against 2.6.7 allows the storing of the mbr_signature for the first 16 BIOS int13h devices, and exports them via /sys/firmware/edd/int13_dev8x/mbr_signature as before. This also merges the three EXPORT_SYMBOLs that setup.c exported for edd.c's use into one. Signed-off-by: Matt Domsch <Matt_Domsch@dell.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-
Olaf Hering authored
drivers/video/console/fbcon.c:310: warning: comparison is always true due to limited range of data type char can be either signed or unsigned, depending on the target system. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-