]> git.hungrycats.org Git - linux/log
linux
21 years agoLinux 2.6.1-rc3 v2.6.1-rc3
Linus Torvalds [Wed, 7 Jan 2004 14:21:44 +0000 (06:21 -0800)]
Linux 2.6.1-rc3

21 years ago[PATCH] ppc64: Add missing section definition
Andrew Morton [Wed, 7 Jan 2004 13:56:59 +0000 (05:56 -0800)]
[PATCH] ppc64: Add missing section definition

From: Anton Blanchard <anton@samba.org>

For a laugh we moved the BSS and our world exploded. Turns out we zero
from __bss_start to _end. Add __bss_stop to our section definitions so
we can use it instead.

21 years ago[PATCH] /proc/ppc64 and /proc/iSeries fixes from Linas Vepstas
Andrew Morton [Wed, 7 Jan 2004 13:56:50 +0000 (05:56 -0800)]
[PATCH] /proc/ppc64 and /proc/iSeries fixes from Linas Vepstas

From: Anton Blanchard <anton@samba.org>

Linas Vepstas has audited the ppc64 proc code and found a number of issues.

21 years agoDon't relocate non-allocated regions in modules.
Linus Torvalds [Wed, 7 Jan 2004 13:47:04 +0000 (05:47 -0800)]
Don't relocate non-allocated regions in modules.

This fixes loading of modules compiled with debugging on
some platforms.

From Rusty.

21 years agoMerge bk://kernel.bkbits.net/davem/net-2.6
Linus Torvalds [Wed, 7 Jan 2004 10:31:18 +0000 (02:31 -0800)]
Merge bk://kernel.bkbits.net/davem/net-2.6
into home.osdl.org:/home/torvalds/v2.5/linux

21 years agoMerge bk://kernel.bkbits.net/davem/sparc-2.6
Linus Torvalds [Wed, 7 Jan 2004 10:29:12 +0000 (02:29 -0800)]
Merge bk://kernel.bkbits.net/davem/sparc-2.6
into home.osdl.org:/home/torvalds/v2.5/linux

21 years agoFix silly mremap test.
Linus Torvalds [Wed, 7 Jan 2004 10:26:41 +0000 (02:26 -0800)]
Fix silly mremap test.

Get off the drugs, Linus.

21 years agoFix ttpci bogus use of floating point by casting the
Linus Torvalds [Wed, 7 Jan 2004 10:00:08 +0000 (02:00 -0800)]
Fix ttpci bogus use of floating point by casting the
constant expression properly.

21 years ago[IPV6]: Autoconfig link-local address on ip6-ip6 tunnel device.
Ville Nuorvala [Wed, 7 Jan 2004 04:17:51 +0000 (20:17 -0800)]
[IPV6]: Autoconfig link-local address on ip6-ip6 tunnel device.

21 years ago[COMPAT]: Handle SO_TIMESTAMP cmsgs.
Andi Kleen [Wed, 7 Jan 2004 04:17:13 +0000 (20:17 -0800)]
[COMPAT]: Handle SO_TIMESTAMP cmsgs.

21 years ago[SPARC32]: Use drivers/block/Kconfig
Matthew Wilcox [Wed, 7 Jan 2004 04:10:46 +0000 (20:10 -0800)]
[SPARC32]: Use drivers/block/Kconfig

21 years agoMerge nuts.ninka.net:/disk1/davem/BK/network-2.6
David S. Miller [Wed, 7 Jan 2004 03:19:15 +0000 (19:19 -0800)]
Merge nuts.ninka.net:/disk1/davem/BK/network-2.6
into nuts.ninka.net:/disk1/davem/BK/net-2.6

21 years agoMerge nuts.ninka.net:/disk1/davem/BK/sparcwork-2.6
David S. Miller [Wed, 7 Jan 2004 03:13:20 +0000 (19:13 -0800)]
Merge nuts.ninka.net:/disk1/davem/BK/sparcwork-2.6
into nuts.ninka.net:/disk1/davem/BK/sparc-2.6

21 years ago[PATCH] don't clear i_sb
Dave Kleikamp [Wed, 7 Jan 2004 02:35:15 +0000 (18:35 -0800)]
[PATCH] don't clear i_sb

From: Christoph Hellwig <hch@lst.de>

JFS currently clears i_sb in some error pathes which can make the
core kernel OOPS because it may never be NULL.  Noticed because some
IBM people try to "fix" the core kernel for it now..

21 years ago[PATCH] ia32 sched_clock() deadlock fix
Andrew Morton [Tue, 6 Jan 2004 23:52:48 +0000 (15:52 -0800)]
[PATCH] ia32 sched_clock() deadlock fix

From: Ingo Molnar <mingo@elte.hu>,

Voyager is getting odd deadlocks due to the taking of xtime_lock() in
sched_clock()->get_jiffies_64().

I had this patch queued up to fix a different deadlock, which occurs when we
relax the requirement that TSC's be synchronised across CPUs.  But it will
fix James' deadlock too.

21 years ago[PATCH] dvb: firmware fixes
Andrew Morton [Tue, 6 Jan 2004 23:52:39 +0000 (15:52 -0800)]
[PATCH] dvb: firmware fixes

From: Michael Hunold <hunold@convergence.de>

- move around sp887x firmware file entry to be close to sp887x selection

- fix a bunch of filenames to point to /usr/lib/hotplug/firmware/ rather
  then /etc/dvb

- fix the av7110 firmware config entry for "make allyesconfig"

21 years ago[PATCH] JFS fix for NFS on little-endian systems
Andrew Morton [Tue, 6 Jan 2004 23:52:30 +0000 (15:52 -0800)]
[PATCH] JFS fix for NFS on little-endian systems

From: Dave Kleikamp <shaggy@austin.ibm.com>

After Jose debugged the problem down to the routine jfs_get_parent, we
were able to find the problem.  I believe it only affects users of
NFS-exported JFS file systems on big-endian hardware.

The problem was a missing le32_to_cpu macro.  The patch also fixes a
return code to be more consistent other implementations of get_parent.

21 years ago[PATCH] fix sysfs oops
Andrew Morton [Tue, 6 Jan 2004 23:52:21 +0000 (15:52 -0800)]
[PATCH] fix sysfs oops

From: Greg KH <greg@kroah.com>

This fixes an oops when a kobject is unregistered before it's child is.
The usb-serial devices show this bug very easily (yank out a device
while its port is opened...)

Patch was originally written by Mike Gorse <mgorse@mgorse.dhs.org>

21 years ago[PATCH] MSI build fixes
Andrew Morton [Tue, 6 Jan 2004 23:52:12 +0000 (15:52 -0800)]
[PATCH] MSI build fixes

Add missing NR_VECTORS definition to visws and pc9800.  Also, make MSI
support dependent on CONFIG_X86_IO_APIC, as it won't build without IOAPIC
support.

21 years agoMerge bk://linux-dj.bkbits.net/agpgart
Linus Torvalds [Tue, 6 Jan 2004 23:44:53 +0000 (15:44 -0800)]
Merge bk://linux-dj.bkbits.net/agpgart
into home.osdl.org:/home/torvalds/v2.5/linux

21 years ago[AGPGART] Add support for Radeon IGP345M to ATI GART driver.
Dave Jones [Wed, 7 Jan 2004 14:53:58 +0000 (14:53 +0000)]
[AGPGART] Add support for Radeon IGP345M to ATI GART driver.
Also consolidate a bunch of convoluted if's into a single
"is this an r200 or r300" function.

21 years agoFix my PGP fingerprint in the CREDITS file.
Mitsuru Kanda [Tue, 6 Jan 2004 14:26:30 +0000 (06:26 -0800)]
Fix my PGP fingerprint in the CREDITS file.

21 years ago[NET]: Make sure that class selected by priority is a leaf in HTB scheduler.
Martin Devera [Tue, 6 Jan 2004 14:19:46 +0000 (06:19 -0800)]
[NET]: Make sure that class selected by priority is a leaf in HTB scheduler.

21 years ago[NETFILTER]: Add SELINUX priority values for ipv4/ipv6, approved by Harald Welte.
James Morris [Tue, 6 Jan 2004 13:42:12 +0000 (05:42 -0800)]
[NETFILTER]: Add SELINUX priority values for ipv4/ipv6, approved by Harald Welte.

21 years agoMerge nuts.ninka.net:/disk1/davem/BK/network-2.6
David S. Miller [Tue, 6 Jan 2004 13:09:37 +0000 (05:09 -0800)]
Merge nuts.ninka.net:/disk1/davem/BK/network-2.6
into nuts.ninka.net:/disk1/davem/BK/net-2.6

21 years agoMerge nuts.ninka.net:/disk1/davem/BK/sparcwork-2.6
David S. Miller [Tue, 6 Jan 2004 13:05:40 +0000 (05:05 -0800)]
Merge nuts.ninka.net:/disk1/davem/BK/sparcwork-2.6
into nuts.ninka.net:/disk1/davem/BK/sparc-2.6

21 years ago[PATCH] Fix PnP BIOS call
Adam Belay [Tue, 6 Jan 2004 12:08:21 +0000 (04:08 -0800)]
[PATCH] Fix PnP BIOS call

The recent escd fix I have made corrects a thinko in the PnPBIOS code and it
turns out that faults from calling /proc/pnp/bus/escd were probably not caused
by BIOS bugs.

21 years agoMerge home.osdl.org:/home/torvalds/v2.5/kconfig
Linus Torvalds [Tue, 6 Jan 2004 11:47:08 +0000 (03:47 -0800)]
Merge home.osdl.org:/home/torvalds/v2.5/kconfig
into home.osdl.org:/home/torvalds/v2.5/linux

21 years ago[PATCH] qconf fix
Roman Zippel [Tue, 6 Jan 2004 11:46:12 +0000 (03:46 -0800)]
[PATCH] qconf fix

Sometimes a menuconfig item is shown twice, so hide the other item.

21 years ago[PATCH] gconf startup fixes
Roman Zippel [Tue, 6 Jan 2004 11:46:03 +0000 (03:46 -0800)]
[PATCH] gconf startup fixes

Let gconf find it's glade file, even it's started with an absolute path
and check srcdir so it also works if it's compiled outside of the tree.

21 years ago[PATCH] gconf compile warning fixes
Roman Zippel [Tue, 6 Jan 2004 11:45:55 +0000 (03:45 -0800)]
[PATCH] gconf compile warning fixes

gconf compile warning fixes (by Buddy Lucas <b.lucas@ohra.nl>)

21 years ago[PATCH] fix gconf segfault problem
Roman Zippel [Tue, 6 Jan 2004 11:45:46 +0000 (03:45 -0800)]
[PATCH] fix gconf segfault problem

fix gconf segfault problem (by Romain Lievin <roms@tilp.info>)

21 years ago[PATCH] generate an error if writing of kernel config failed
Roman Zippel [Tue, 6 Jan 2004 11:45:38 +0000 (03:45 -0800)]
[PATCH] generate an error if writing of kernel config failed

generate an error if writing of kernel config failed

21 years ago[AGPGART] printk level changes for amd64
Dave Jones [Mon, 5 Jan 2004 18:11:11 +0000 (18:11 +0000)]
[AGPGART] printk level changes for amd64

21 years ago[PATCH] fix oopses on rmmod in some OSS drivers
Bartlomiej Zolnierkiewicz [Mon, 5 Jan 2004 13:39:29 +0000 (05:39 -0800)]
[PATCH] fix oopses on rmmod in some OSS drivers

Fix for oops on rmmod caused by *_remove() function marked as __devinit
(and thus discarded after module initialization - if CONFIG_MODULES=y
and CONFIG_HOTPLUG is not set).
This patch changes __devinit to __devexit and adds __devexit_p() where
pointer to such function is used.

The only exception is au1000, where au1000_remove() is called from
cleanup_au1000() function - __devinit is jest removed there.

21 years ago[PATCH] remove dead and broken DISK_RECOVERY_TIME support
Bartlomiej Zolnierkiewicz [Mon, 5 Jan 2004 13:39:20 +0000 (05:39 -0800)]
[PATCH] remove dead and broken DISK_RECOVERY_TIME support

It was also removed in 2.4.23.

21 years ago[PATCH] ide-tape.c: stop abusing rq->flags
Bartlomiej Zolnierkiewicz [Mon, 5 Jan 2004 13:39:11 +0000 (05:39 -0800)]
[PATCH] ide-tape.c: stop abusing rq->flags

Use rq->cmd[0] instead of rq->flags for storing special request flags.

Per Jens' suggestion.  Tested by Stef van der Made <svdmade@planet.nl>.

21 years ago[PATCH] cmd640.c: fix PCI type1 access
Bartlomiej Zolnierkiewicz [Mon, 5 Jan 2004 13:39:01 +0000 (05:39 -0800)]
[PATCH] cmd640.c: fix PCI type1 access

Revert wrong changes introduced in 2.4.21.

From: Stefan Talpalaru <stefantalpalaru@yahoo.com>,
      Ingo Kilian <ikilian@web.de>.

21 years ago[PATCH] Fix interrupt routing problem on x86-64
Andi Kleen [Mon, 5 Jan 2004 13:38:52 +0000 (05:38 -0800)]
[PATCH] Fix interrupt routing problem on x86-64

The MSI port to x86-64 added an interrupt routing bug that makes the
kernel not boot anymore on some machines.

Fix that.

21 years ago[NET]: Un-deprecate skb_linearize(), we can re-deprecate in 2.7.x
David S. Miller [Mon, 5 Jan 2004 12:33:31 +0000 (04:33 -0800)]
[NET]: Un-deprecate skb_linearize(), we can re-deprecate in 2.7.x

21 years ago[SPARC32]: Fix BUG on swapout on srmmu systems.
Keith M. Wesolowski [Mon, 5 Jan 2004 12:27:02 +0000 (04:27 -0800)]
[SPARC32]: Fix BUG on swapout on srmmu systems.

This fixes BUG-on-swapout for srmmu-based systems.  The problem is
caused by kmap_atomic_to_page being fed an aliased (pagetable) address
and returning bogons.  This also adjusts the pkmap and fixmap base
addresses so they cannot overlap.

21 years ago[IRDA]: Fix locking in the ircomm-shutdown path.
Jean Tourrilhes [Mon, 5 Jan 2004 12:03:28 +0000 (04:03 -0800)]
[IRDA]: Fix locking in the ircomm-shutdown path.

21 years ago[NET]: In dev_kfree_skb_any() use dev_kfree_skb_irq() if irqs_disabled().
David S. Miller [Mon, 5 Jan 2004 11:54:41 +0000 (03:54 -0800)]
[NET]: In dev_kfree_skb_any() use dev_kfree_skb_irq() if irqs_disabled().

With help from Jeff Garzik and others.

21 years agoLinux 2.6.1-rc2 v2.6.1-rc2
Linus Torvalds [Mon, 5 Jan 2004 11:41:17 +0000 (03:41 -0800)]
Linux 2.6.1-rc2

21 years ago[SPARC64]: Export sys_close for solaris emulation.
Tom 'spot' Callaway [Mon, 5 Jan 2004 06:33:55 +0000 (22:33 -0800)]
[SPARC64]: Export sys_close for solaris emulation.

21 years ago[SPARC64]: Use drivers/block/Kconfig.
Matthew Wilcox [Mon, 5 Jan 2004 06:11:25 +0000 (22:11 -0800)]
[SPARC64]: Use drivers/block/Kconfig.

21 years ago[SPARC]: Add placeholder asm-{sparc,sparc64}/setup.h so MTD builds.
Tom 'spot' Callaway [Mon, 5 Jan 2004 06:10:25 +0000 (22:10 -0800)]
[SPARC]: Add placeholder asm-{sparc,sparc64}/setup.h so MTD builds.

21 years ago[SPARC64]: Fix CONFIG_DRM_FFB=y build.
Ciaran McCreesh [Mon, 5 Jan 2004 05:00:05 +0000 (21:00 -0800)]
[SPARC64]: Fix CONFIG_DRM_FFB=y build.

21 years ago[NET]: Fix multiple eth0 mixed PCI/ISA init.
Stephen Hemminger [Mon, 5 Jan 2004 04:58:57 +0000 (20:58 -0800)]
[NET]: Fix multiple eth0 mixed PCI/ISA init.

This patch for 2.6 fixes the problem found by Zoltan Farkas
with mixed PCI/ISA and a non-modular config.  The problem is the old_netdev
ISA probing isn't skipping eth0 which already got assigned by the PCI
initialization.

21 years ago[DECNET]: Better way to prevent decnet module unload.
Stephen Hemminger [Mon, 5 Jan 2004 04:57:39 +0000 (20:57 -0800)]
[DECNET]: Better way to prevent decnet module unload.

21 years ago[AF_PACKET]: Convert to seq_file.
Stephen Hemminger [Mon, 5 Jan 2004 04:56:58 +0000 (20:56 -0800)]
[AF_PACKET]: Convert to seq_file.

21 years ago[SPARC64]: Fix sun_uflash MTD driver build.
Tom 'spot' Callaway [Mon, 5 Jan 2004 03:27:49 +0000 (19:27 -0800)]
[SPARC64]: Fix sun_uflash MTD driver build.

21 years ago[SUNZILOG]: Register the correct number of ports, ignore keyb/mouse lines.
David Dillow [Mon, 5 Jan 2004 03:23:47 +0000 (19:23 -0800)]
[SUNZILOG]: Register the correct number of ports, ignore keyb/mouse lines.

21 years ago[SPARC]: Add missing MODULE_LICENSE tags to various Sparc driver.
Tom 'spot' Callaway [Mon, 5 Jan 2004 03:08:54 +0000 (19:08 -0800)]
[SPARC]: Add missing MODULE_LICENSE tags to various Sparc driver.

21 years agoMerge centrino speedstep duplicate patches
Linus Torvalds [Mon, 5 Jan 2004 03:03:45 +0000 (19:03 -0800)]
Merge centrino speedstep duplicate patches

21 years ago[CPUFREQ] Missing .owner entry in speedstep-smi driver.
Dave Jones [Mon, 5 Jan 2004 18:44:26 +0000 (18:44 +0000)]
[CPUFREQ] Missing .owner entry in speedstep-smi driver.

21 years ago[CPUFREQ] Typo fix in drivers/cpufreq/Kconfig
Dave Jones [Mon, 5 Jan 2004 18:43:47 +0000 (18:43 +0000)]
[CPUFREQ] Typo fix in drivers/cpufreq/Kconfig

21 years ago[CPUFREQ] do not leak memory in powernow-k8
Dave Jones [Mon, 5 Jan 2004 18:42:37 +0000 (18:42 +0000)]
[CPUFREQ] do not leak memory in powernow-k8
From Pavel Machek

21 years ago[CPUFREQ] Do something about "cpufreq: change failed"
Dave Jones [Mon, 5 Jan 2004 18:35:23 +0000 (18:35 +0000)]
[CPUFREQ] Do something about "cpufreq: change failed"

21 years ago[CPUFREQ] use latency in nanoseconds
Dave Jones [Mon, 5 Jan 2004 18:33:27 +0000 (18:33 +0000)]
[CPUFREQ] use latency in nanoseconds
sometimes nanoseconds are used, sometimes microseconds, sometimes even something else.

21 years ago[CPUFREQ] remove unneeded #ifdefs in include/linux/cpufreq.h
Dave Jones [Mon, 5 Jan 2004 18:32:08 +0000 (18:32 +0000)]
[CPUFREQ] remove unneeded #ifdefs in include/linux/cpufreq.h

21 years ago[CPUFREQ] Detect CPU speed without relying on cpu_khz
Dave Jones [Mon, 5 Jan 2004 18:31:40 +0000 (18:31 +0000)]
[CPUFREQ] Detect CPU speed without relying on cpu_khz

21 years ago[CPUFREQ] Support for 533 MHz FSB in speedstep driver.
Dave Jones [Mon, 5 Jan 2004 18:30:48 +0000 (18:30 +0000)]
[CPUFREQ] Support for 533 MHz FSB in speedstep driver.

21 years ago[CPUFREQ] Disable smi_detect_freqs() call on systems which do not support it [BUG...
Dave Jones [Mon, 5 Jan 2004 18:19:13 +0000 (18:19 +0000)]
[CPUFREQ] Disable smi_detect_freqs() call on systems which do not support it [BUG #1422]
Dominik Brodowski.

21 years ago[CPUFREQ] speedstep hcakers cnat spel.
Dave Jones [Mon, 5 Jan 2004 18:18:10 +0000 (18:18 +0000)]
[CPUFREQ] speedstep hcakers cnat spel.

21 years ago[CPUFREQ] Disable debug output in speedstep-smi driver
Dave Jones [Mon, 5 Jan 2004 18:17:20 +0000 (18:17 +0000)]
[CPUFREQ] Disable debug output in speedstep-smi driver

21 years ago[CPUFREQ] on P4s no TSC adjustment is necessary
Dave Jones [Mon, 5 Jan 2004 18:16:28 +0000 (18:16 +0000)]
[CPUFREQ] on P4s no TSC adjustment is necessary
From Dominik Brodowski

21 years agoMerge bk://linux-dj.bkbits.net/agpgart
Linus Torvalds [Mon, 5 Jan 2004 02:18:21 +0000 (18:18 -0800)]
Merge bk://linux-dj.bkbits.net/agpgart
into home.osdl.org:/home/torvalds/v2.5/linux

21 years agoDon't allow mremap of zero-sized areas.
Linus Torvalds [Mon, 5 Jan 2004 01:41:13 +0000 (17:41 -0800)]
Don't allow mremap of zero-sized areas.

21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-rmk
Linus Torvalds [Sun, 4 Jan 2004 10:37:38 +0000 (02:37 -0800)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk
into home.osdl.org:/home/torvalds/v2.5/linux

21 years ago[ARM] Report more detail when unable to resolve module relocations.
Russell King [Sun, 4 Jan 2004 20:51:41 +0000 (20:51 +0000)]
[ARM] Report more detail when unable to resolve module relocations.

21 years ago[ARM] Kill dma-isa.c warning.
Russell King [Sun, 4 Jan 2004 20:06:39 +0000 (20:06 +0000)]
[ARM] Kill dma-isa.c warning.

21 years ago[ARM] Fix cachepolicy=<foo>
Russell King [Sun, 4 Jan 2004 17:29:23 +0000 (17:29 +0000)]
[ARM] Fix cachepolicy=<foo>

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.

21 years ago[ARM] Fix more gcc3 build errors.
Russell King [Sun, 4 Jan 2004 16:49:04 +0000 (16:49 +0000)]
[ARM] Fix more gcc3 build errors.

21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-serial
Linus Torvalds [Sun, 4 Jan 2004 10:34:20 +0000 (02:34 -0800)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-serial
into home.osdl.org:/home/torvalds/v2.5/linux

21 years ago[SERIAL] EISA ID for PnP modem
Amit Gurdasani [Sun, 4 Jan 2004 16:28:39 +0000 (16:28 +0000)]
[SERIAL] EISA ID for PnP modem

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.

21 years agoFix IDE "PIO WRITE wait for ready" test under extreme interrupt load.
Linus Torvalds [Sat, 3 Jan 2004 10:25:13 +0000 (02:25 -0800)]
Fix IDE "PIO WRITE wait for ready" test under extreme interrupt load.

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.

21 years ago[SERIAL] Remove old RSA resource handlign.
Russell King [Fri, 2 Jan 2004 19:36:52 +0000 (19:36 +0000)]
[SERIAL] Remove old RSA resource handlign.

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().

21 years ago[SERIAL] add PnP ID to 8250_pnp.c
Rene Herman [Fri, 2 Jan 2004 19:25:32 +0000 (19:25 +0000)]
[SERIAL] add PnP ID to 8250_pnp.c

Patch from: Rene Herman

This patch adds the PnP ID for the E-Tech CyberBULLET PC56RVP.

21 years ago[PATCH] Fix memset on x86-64
Andi Kleen [Fri, 2 Jan 2004 12:57:06 +0000 (04:57 -0800)]
[PATCH] Fix memset on x86-64

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.

21 years ago[NET]: Do type checking in {udp,inet6,raw6,inet}_sk().
Ingo Molnar [Thu, 1 Jan 2004 04:28:44 +0000 (20:28 -0800)]
[NET]: Do type checking in {udp,inet6,raw6,inet}_sk().

21 years ago[IPV6]: Kill obsolete functions (ip6_frag_xmit() and ip6_build_xmit()).
Hideaki Yoshifuji [Thu, 1 Jan 2004 04:27:45 +0000 (20:27 -0800)]
[IPV6]: Kill obsolete functions (ip6_frag_xmit() and ip6_build_xmit()).

21 years ago[PATCH] X86-64 merge
Andi Kleen [Thu, 1 Jan 2004 03:41:03 +0000 (19:41 -0800)]
[PATCH] X86-64 merge

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

21 years agoMerge http://lia64.bkbits.net/to-linus-2.5
Linus Torvalds [Thu, 1 Jan 2004 03:32:18 +0000 (19:32 -0800)]
Merge http://lia64.bkbits.net/to-linus-2.5
into home.osdl.org:/home/torvalds/v2.5/linux

21 years ago[PATCH] DVB: Fix memory usage of ttpci driver
Michael Hunold [Thu, 1 Jan 2004 03:25:32 +0000 (19:25 -0800)]
[PATCH] DVB: Fix memory usage of ttpci driver

 - do not allocate firmware buffer if firmware is compiled into the
   driver.  Saves 220KB vmem (Andreas Oberritter)

21 years ago[PATCH] DVB: Revamp of the TTUSB-DEC driver
Michael Hunold [Thu, 1 Jan 2004 03:25:24 +0000 (19:25 -0800)]
[PATCH] DVB: Revamp of the TTUSB-DEC driver

 - 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).

21 years ago[PATCH] DVB: Add static firmware compilation again
Michael Hunold [Thu, 1 Jan 2004 03:25:13 +0000 (19:25 -0800)]
[PATCH] DVB: Add static firmware compilation again

 - 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

21 years ago[PATCH] DVB: Fixes for frontend drivers
Michael Hunold [Thu, 1 Jan 2004 03:25:04 +0000 (19:25 -0800)]
[PATCH] DVB: Fixes for frontend drivers

 - 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)

21 years ago[PATCH] DVB: Fix feed list handling bugs in demux
Michael Hunold [Thu, 1 Jan 2004 03:24:56 +0000 (19:24 -0800)]
[PATCH] DVB: Fix feed list handling bugs in demux

 - corrected handling of feed lists (Andres Oberritter)

21 years ago[PATCH] DVB: Update documentation and credits
Michael Hunold [Thu, 1 Jan 2004 03:24:46 +0000 (19:24 -0800)]
[PATCH] DVB: Update documentation and credits

 - add new documentation for getting bt8xx based DVB cards runnig
 - extend contributors list
 - change various email addresses in header files

21 years agoRemove dead files
Linus Torvalds [Thu, 1 Jan 2004 03:07:05 +0000 (19:07 -0800)]
Remove dead files

Noted by Keith Owens.

21 years agoia64: Update defconfig.
David Mosberger [Wed, 31 Dec 2003 15:34:35 +0000 (07:34 -0800)]
ia64: Update defconfig.

21 years agoia64: Rename efi_get_time() in the simulator's firmware-emulator to avoid
David Mosberger [Wed, 31 Dec 2003 15:33:55 +0000 (07:33 -0800)]
ia64: Rename efi_get_time() in the simulator's firmware-emulator to avoid
name-clash with declaration of routine of the same name in
<linux/efi.h>.

21 years agoia64: Merge patch by Arun Sharma: hook up lots of ia32 syscalls.
David Mosberger [Wed, 31 Dec 2003 15:29:50 +0000 (07:29 -0800)]
ia64: Merge patch by Arun Sharma: hook up lots of ia32 syscalls.

21 years agoMerge tiger.hpl.hp.com:/data1/bk/vanilla/linux-2.5
David Mosberger [Wed, 31 Dec 2003 15:27:20 +0000 (07:27 -0800)]
Merge tiger.hpl.hp.com:/data1/bk/vanilla/linux-2.5
into tiger.hpl.hp.com:/data1/bk/lia64/to-linus-2.5

21 years agoia64: fix perfmon bug causing lost samples
David Mosberger [Wed, 31 Dec 2003 15:23:38 +0000 (07:23 -0800)]
ia64: fix perfmon bug causing lost samples

Patch from Stephane: Fix a bug in perfmon_default_smpl.c by
which we would systematically lose one sample at every buffer
overflow.

21 years agoia64: Remove the old ia64_ni_syscall()/sys32_ni_syscall() routines which
David Mosberger [Wed, 31 Dec 2003 15:21:34 +0000 (07:21 -0800)]
ia64: Remove the old ia64_ni_syscall()/sys32_ni_syscall() routines which
are overly verbose and replace them with calls to sys_ni_syscall().

21 years agoia64: Allow system-call number to be changed during system-call tracing
David Mosberger [Wed, 31 Dec 2003 15:18:59 +0000 (07:18 -0800)]
ia64: Allow system-call number to be changed during system-call tracing
(both for native and x86 system call tracing).  This is needed
by recent versions of strace and UML likes to do that, too.

21 years agoia64: Rearrange ia64_do_signal() such that it is possible for a debugger to
David Mosberger [Wed, 31 Dec 2003 15:15:39 +0000 (07:15 -0800)]
ia64: Rearrange ia64_do_signal() such that it is possible for a debugger to
cancel system-call restart.

21 years ago[PATCH] Fix "echo -n 3 > /sys/.../power/state"
Russell King [Wed, 31 Dec 2003 08:41:45 +0000 (00:41 -0800)]
[PATCH] Fix "echo -n 3 > /sys/.../power/state"

Fix what seems to be a typo preventing .../power/state from working.