- 05 Jan, 2004 2 commits
-
-
bk://linux-dj.bkbits.net/agpgartLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Linus Torvalds authored
-
- 04 Jan, 2004 7 commits
-
-
bk://bk.arm.linux.org.uk/linux-2.6-rmkLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Russell King authored
-
Russell King authored
-
Russell King authored
On ARM, it is possible to configure the desired cache policy in the page tables. Unfortunately, we haven't been updating the protection_map nor PAGE_KERNEL, so this option doesn't change the behaviour of the majority of mappings. This cset corrects this oversight.
-
Russell King authored
-
bk://bk.arm.linux.org.uk/linux-2.6-serialLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Amit Gurdasani authored
Patch from: Amit Gurdasani I have a PROLiNK 1456VH internal Rockwell-based ISA PnP K56flex fax modem whose EISA ID seems not to be known to 8250_pnp.c. The ID is AEI0250 as reported in /sys/devices/pnp1/01:01/01:01.00/id and adding this into the pnp_dev_table[] allows the device to be found and enabled properly by the 8250 serial driver.
-
- 03 Jan, 2004 1 commit
-
-
Linus Torvalds authored
From Daniel Tram Lux: under extreme irq load on an underpowered CPU, the timeout loop may not make any progress, and decide that a timeout occurred before it has actually tested the status register. The minimal fix for now is to just have a final test _after_ the timeout to remove the problem. The real fix would likely be to not have irqs enabled between reading the status and the timeout.
-
- 02 Jan, 2004 3 commits
-
-
Russell King authored
The resource handling left in autoconfig() is plainly wrong, since we've already claimed the necessary resources prior to calling autoconfig(). Therefore, we remove the superfluous code from autoconfig().
-
Rene Herman authored
Patch from: Rene Herman This patch adds the PnP ID for the E-Tech CyberBULLET PC56RVP.
-
Andi Kleen authored
The memset for C stepping K8 was broken. This broke mainly CONFIG_SLAB_DEBUG because memset(...., 0, ...) still worked correctly. Thanks to Manfred Spraul for giving me the right cue.
-
- 01 Jan, 2004 9 commits
-
-
Andi Kleen authored
At least one of them is critical. It fixes an path in the IOMMU that I broke with the ealier "fullflush" workaround. - Check for ~/bin/installkernel like i386 (M. Bligh) - Implement 32bit RTC_IRQ_SET correctly (Lutz Vieweg) - Disable some useless printks in 32bit emulation - Warning fixes for mixed C99 style declarations/statements. - Sync lAPIC power management with i386 - Use topology sysfs like i386 - Fix some serious bugs in the MCE handler. ECC should be decoded correctly now. - Add oops=panic option to panic on Oopses. - Fix hackish code in head.S - Add missing options in IOMMU - Fix _syscall6 (Olaf Hering) - Remove broken ACPI locking code. Port IA64 C version. - Make safe_smp_processor_id() more reliable - Read HPET in vsyscall code - Add workaround for BIOS that corrupt 64bit registers in HLT - Fix unaligned access in bitops.h - Remove broken ntp drift correction code for now - i386 merge in SCI setup - Fix wrong offset in callin.h (Jim Houston) - Minor comment fixes
-
http://lia64.bkbits.net/to-linus-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Michael Hunold authored
- do not allocate firmware buffer if firmware is compiled into the driver. Saves 220KB vmem (Andreas Oberritter)
-
Michael Hunold authored
- Alter hotplug firmware naming to fit in with dvb standard. - Use the hotplug firmware loader for 2.6 kernels instead of compiling the firmware into the module. - Integrate frontend into ttusb_dec module and remove pseudo-i2c bits, move ttusb_dec header into source file. - Rudimentary section filter support (enough for scan).
-
Michael Hunold authored
- add Kconfig magic to select a firmware that can be compiled into the driver - add some hooks to av7110 to compile a firmware into the driver again
-
Michael Hunold authored
- ves1820: increase mdelay from 30 to 50 to be more reliable with bad reception quality (Andreas Oberritter) - dst: remove AUTO_INVERSION for capabilities, allow params dst_type_flags and dst_type to have multiple values for multiple cards in one machine (Jamie Honan)
-
Michael Hunold authored
- corrected handling of feed lists (Andres Oberritter)
-
Michael Hunold authored
- add new documentation for getting bt8xx based DVB cards runnig - extend contributors list - change various email addresses in header files
-
Linus Torvalds authored
Noted by Keith Owens.
-
- 31 Dec, 2003 16 commits
-
-
David Mosberger authored
-
David Mosberger authored
name-clash with declaration of routine of the same name in <linux/efi.h>.
-
David Mosberger authored
-
David Mosberger authored
into tiger.hpl.hp.com:/data1/bk/lia64/to-linus-2.5
-
David Mosberger authored
Patch from Stephane: Fix a bug in perfmon_default_smpl.c by which we would systematically lose one sample at every buffer overflow.
-
David Mosberger authored
are overly verbose and replace them with calls to sys_ni_syscall().
-
David Mosberger authored
(both for native and x86 system call tracing). This is needed by recent versions of strace and UML likes to do that, too.
-
David Mosberger authored
cancel system-call restart.
-
Russell King authored
Fix what seems to be a typo preventing .../power/state from working.
-
James Bottomley authored
The x86 build depends on NR_VECTORS being defined. This symbol, however, was put only into mach-default/irq_vectors.h The attached patch adds it to voyager too.
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/tg3-2.6
-
Jeroen Vreeken authored
-
Hideaki Yoshifuji authored
-
Bart De Schuymer authored
-
David S. Miller authored
into nuts.ninka.net:/disk1/davem/BK/net-2.6
-
- 30 Dec, 2003 2 commits
-
-
David Mosberger authored
process. The root-cause of the problem was that ptrace() tried to copy the portion of the register backing store that landed on the kernel stack back to users-space, but the resulting state was inconsistent if the inferior process was in the middle of a system-call (as would always be the case for strace). The solution is to avoid all needless copying and to instead ensure that when accessing a memory location that may belong to a thread's register-backing store, we attach to that particular thread, rather than the thread identified by the PID argument. If the thread happens to be unattachable, we fall back to using the thread identified by the PID argument. This should have the desired effect if the thread has terminated already and if the thread is running while ptrace() is trying to access its state, all bets are off anyhow and there are no coherency guarantees. In other words, this should be doing the right thing under all circumstances. The patch also fixes the case where PT_AR_BSP and/or PT_CFM are written while the inferior process is in the middle of a system call. This makes arguments passed to GDB inferior calls come out right. The patch was tested with strace -f and the GDB testsuite, which showed no regressions compared to the previous version of the kernel.
-
Linus Torvalds authored
-