- 16 Oct, 2003 18 commits
-
-
bk://kernel.bkbits.net/davem/sparc-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Armin Schindler authored
-
Alexander Viro authored
Fix breakage in reiserfs/procfs.c iterator. Nikita had ACKed the patch.
-
Jens Axboe authored
From ramon_garcia_f@yahoo.com: "I am experiencing lost interrupts when writting (but not when reading) to an IOMEGA Zip drive with the ATAPI floppy driver. The driver seems to be aware of the problem and has a workaround for it. Unfortunately my drive is not detected as an IOMEGA drive. The reason is that the model of my drive is "IOMEGA ZIP 100 ATAPI Floppy" instead of "IOMEGA ZIP 100 ATAPI", that is what the driver expects. "
-
Andrew Morton authored
From: William Lee Irwin III <wli@holomorphy.com> So call it rather than testing its address...
-
Andrew Morton authored
It is using token pasting in ways which confuse gcc-2.9x.
-
Andrew Morton authored
From: "Alexey Dobriyan" <adobriyan@mail.ru>, Andreas Gruenbacher <agruen@suse.de> Make local variable `count' an integer so the subsequent test for negativeness makes sense.
-
Andrew Morton authored
From: "Randy.Dunlap" <rddunlap@osdl.org> Fix a permanent resource leak and also some resource leaks on error paths.
-
Andrew Morton authored
From: Alex Tomas <alex@clusterfs.com> The setting of i_disksize can race against concurrent invokations of ext3_get_block(). Moving this inside i_truncate_sem fixes it up.
-
Andrew Morton authored
From: William Lee Irwin III <wli@holomorphy.com> The forward static declaration in a header is a) weird and b) generates a warning if the inline function which needs it is not expanded. Move these things from .h into .c
-
Andrew Morton authored
From: Yury Umanets <umka@namesys.com> Fix the reiserfs Kconfig URLs.
-
Andrew Morton authored
From: Zwane Mwaikambo <zwane@arm.linux.org.uk> The swapon code uses read_cache_page() to access the swap header, so the filesystem had better implement it.
-
Andrew Morton authored
From: Michael Still <mikal@stillhq.com> The attached patch corrects case sensitivity in the mandocs make target. XML is case insensitive, and a bunch of the kernel-doc assumes this. The makeman and splitman scripts incorrectly cared about case. This patch also updates the Docbook DTD version which the script generates.
-
Andrew Morton authored
From: James Morris <jmorris@redhat.com> This patch adds a file to the root selinuxfs directory which returns the security policy version associated with the currently running kernel. Its purpose is to allow scripts to determine which version of policy to load.
-
Andrew Morton authored
From: Roger Luethi <rl@hellgate.ch> __might_sleep prints warnings only after jiffies wrap (typically after 5 minutes of uptime).
-
Andrew Morton authored
From: Felipe W Damasio <felipewd@terra.com.br> Check the return of copy_from_user in a few places to not use buggy structures if copy_from_user != 0. Found by smatch.
-
Andrew Morton authored
From: viro@parcelfarce.linux.theplanet.co.uk * drivers/block/initrd.c gone * chunk of memory where the current tree would look for intird image is checked for being a valid initramfs image first; then, it is either unpacked (in addition to normal built-in image) or, if it wasn't a valid image, copied into a regular file on rootfs called /dev/initrd. Then memory is freed. Result: a) we can put initramfs image in place of initrd one and kernel will DTRT. b) initrd images still work as usual; code that shoves the thing to ramdisk, etc. doesn't care whether it reads from a block device or regular file. c) initrd.c is gone, so is fake block device and a lot of irregularities with it. It has been in -mm for almost two weeks with no reported problems.
-
- 15 Oct, 2003 17 commits
-
-
Randy Dunlap authored
-
Arnaldo Carvalho de Melo authored
-
Madarasz Gergely authored
-
David S. Miller authored
into nuts.ninka.net:/disk1/davem/BK/net-2.5
-
David S. Miller authored
into nuts.ninka.net:/disk1/davem/BK/sparc-2.5
-
Andi Kleen authored
vm86 mode does a copy_to_user from the general protection fault handler to update the process' vm86 state. The problem is that the full GFP handler runs with interrupts off currently and that trips the might_sleep() test in copy_to_user(). This happens very often in dosemu and once in a while while the X server does its vm86 magic with the VGA bios. See http://bugzilla.kernel.org/show_bug.cgi?id=1339 for details This patch fixes this by enabling interrupts when the original code ran with interrupts on or ran in vm86 mode (vm86 can clear the IF flag)
-
Linus Torvalds authored
Don't assume the APIC is at the power-on default address, since the BIOS can have moved it somewhere else without really ever telling us (ie we have an MP table or ACPI that fixes it for us, but those are not always available)
-
Bartlomiej Zolnierkiewicz authored
hwif->ide_dma_on() was is in the wrong place in the mode tuning helper and was also called for devices which do not support IORDY flow control (such as CompactFlash cards).
-
bk://bk.arm.linux.org.uk/linux-2.6-rmkLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/gregkh/linux/pci-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/gregkh/linux/usb-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/gregkh/linux/i2c-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Tigran Aivazian authored
This contains the following changes: a) changes from Intel to support the new microcode data format (backward compatible of course) b) changes from me to remove the no longer needed features of the driver, namely we don't need to keep a copy of applied microcode in kernel memory. This feature was hardly useful in the days of regular devfs /dev/cpu/microcode file and now it is completely useless so I removed it (after taking into account all the feedback on linux-kernel I received since the announcement of the intention to do this) These are rather critical because otherwise we can't really say Linux fully supports the very latest Intel cpus (which require microcode in the new format).
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/pci-2.6
-
Albert Cahalan authored
Having the number-of-threads value easily available turns out to be very important for procps performance. The /proc/*/stat thing getting reused has been zero since the 2.2.xx days, and was the seldom-used timeout value before that.
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/usb-2.6
-
Greg Kroah-Hartman authored
into kroah.com:/home/greg/linux/BK/i2c-2.6
-
- 14 Oct, 2003 5 commits
-
-
Russell King authored
Our do_div implementation can't correctly handle divisors with the top bit set. This cset fixes this up with a minimal change.
-
David S. Miller authored
Several drivers do things like undefine inb et al. in order to switch between using I/O and MEM operations. The Sparc io.h macros did not cope with this well, so fix that up.
-
David S. Miller authored
Defining disable_irq et al. as macros is asking for trouble especially since some parts of the kernel uses structures with members having these same names. So use inline functions instead.
-
David S. Miller authored
-
David S. Miller authored
-