- 26 Jul, 2003 10 commits
-
-
Geert Uytterhoeven authored
Atari ACSI SLM Laser Printer: Remove obsolete parameter of atari_stram_alloc() call.
-
Geert Uytterhoeven authored
M68k: Revert to 2.4 behavior in ret_from_fork (always call schedule_tail, regardless of CONFIG_SMP), as suggested by Andreas Schwab. This removes the warnings from sched.c (from Sam Creasey).
-
Geert Uytterhoeven authored
M68k: Kill obsolete members of irq_cpustat_t
-
Geert Uytterhoeven authored
Kill zorro_check_device(), it's deprecated and unused (from Christoph Hellwig).
-
Geert Uytterhoeven authored
wd33c93 SCSI: Fix compilation after breakage in 2.5.71
-
Geert Uytterhoeven authored
M68k: Add missing module_arch_cleanup()
-
Geert Uytterhoeven authored
M68k floppy: Kill warnings when compiling a multi-platform kernel
-
Geert Uytterhoeven authored
Ns558 gameport: constness of ns558_pnp_driver depends on CONFIG_PNP, causing a warning if CONFIG_PNP is not set, so make sure it is never const.
-
Geert Uytterhoeven authored
m68k: Add missing cacheflush (from Roman Zippel)
-
Geert Uytterhoeven authored
Amiga serial: Kill unused variable warning
-
- 25 Jul, 2003 30 commits
-
-
http://lia64.bkbits.net/to-linus-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
David Mosberger authored
-
David Mosberger authored
bypassing on again, which is more beneficial, performance-wise.
-
David Mosberger authored
-
Miles Bader authored
-
Miles Bader authored
<asm-v850/setup.h> is not correct, and not used, so remove it.
-
Linus Torvalds authored
-
David Mosberger authored
Reported by Richard Henderson.
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/davem/sparc-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Hirofumi Ogawa authored
This renames ->cluster_size to ->sec_per_clus. Old ->cluster_size was "sectors per cluster". Adds a _real_ ->cluster_size.
-
Hirofumi Ogawa authored
This changes a few more char type of filenames to unsigned char.
-
Hirofumi Ogawa authored
This uses the new fat_get_cluster() in fat_free(), fat_calc_dir_size() and fat_add_cluster().
-
Hirofumi Ogawa authored
This uses the new fat_get_cluster() in fat_bmap_cluster(). Another part removes an unneeded error check of fat_get_entry() by using fat_get_cluster().
-
Hirofumi Ogawa authored
This adds fat_get_cluster() for generic reads of FAT cluster-chains, and old fat_get_cluster() is renamed to fat_bmap_cluster().
-
Hirofumi Ogawa authored
This reads ->free_clusters without lock_fat() in fat_statfs().
-
Hirofumi Ogawa authored
This removes the dump_fat() and dump_de() obsoleted debug code in vfat/namei.c.
-
Hirofumi Ogawa authored
This removes dirty raw_scan_*(), and rewrites fat_scan() and fat_subdirs() to use fat_get_entry() instead.
-
Hirofumi Ogawa authored
This fixes filename case handling in vfat_revalidate(): before: # mount -t vfat /dev/hda6 /mnt -o shortname=winnt # cd /mnt # cat File.Txt # make negative dentry cat: File.Txt: No such file or directory # touch file.txt # match negative dentry # ls File.Txt after: # mount -t vfat /dev/hda6 /mnt -o shortname=winnt # cd /mnt # cat File.Txt # make negative dentry cat: File.Txt: No such file or directory # touch file.txt # match negative dentry # ls file.txt
-
Hirofumi Ogawa authored
This adds a forgotten check of MS_RDONLY flag to fat_put_super(), and adds sanity check of ->free_clusters and ->prev_free to fat_cluster_flush().
-
Hirofumi Ogawa authored
- check the ioctl cmd first - check the directory whether it's an already dead
-
Linus Torvalds authored
incorrect re-declaration of the internal linker symbols.
-
Neil Brown authored
It doesn't really make sense for udp.
-
Jim Howard authored
This fixes a *very* obscure bug, which only applies to VIA chipsets that support UDMA-133 mode, and which is only known to be tickled by one UDMA-66 hard drive (Maxtor 91360U4) that happens to report 80-wire cable detection opposite to the ATA standard. The bug appears in a test to see how the BIOS set up UDMA timing. This test is only reached when the drive says 80-wire *and* the chipset says 40-wire (which is only known to happen with this drive). The timing bits that are checked represent clocks T minus 2, i.e., ((N - 2) * T). But Vojtech forgot to subtract 2, and applied N = 8 rather than N = 6 in the test. Since the test masks the bits at 7, they are always less than 8, and the test always succeeds, even though the BIOS set UDMA-33.
-
James Bottomley authored
This allows SCSI to survive the I/O queueing stress harness with AS. Jens has signed off on it, and Mark Havercamp confirms it also eliminates the test induced hangs for him too.
-
Sam Ravnborg authored
Update support for .incbin in /usr. No longer generate .S files from within the Makefile. Also deleted the assignment to LDFLAGS_BLOB for most architectures. I did not touch ARM and cris: arm: Russell told me they did not have a new as that could be used cris: Looked like it was used for more than just usr/
-
Sam Ravnborg authored
Simplify Makefiles in fs/ by utilising the new syntax for composite objects. The new syntax allowed a couple of ifeq ($(CONFIG_FOO),y) to be deleted, resulting in more readable Makefiles. No functional changes introduced.
-
Roman Zippel authored
Patch by Herbert Xu <herbert@gondor.apana.org.au>: As of 2.5.74, make oldconfig always disables existing optional choices even if they were selected previously. For example, if all the EICON ISDN drivers were selected as modules, then make oldconfig will turn them off. Part of the problem is that the choice value itself is computed before the SYMBOL_NEW flag is turned off. This patch addresses that particular problem.
-
Roman Zippel authored
During an erlier update the call to generate the .config dependency got lost. Add a missing warning.
-
Roman Zippel authored
correctly select a nested menuconfig entry
-