We (the -stable team) are announcing the release of the 2.6.26.1
kernel.
It contains lots of bugfixes, all over the map. Any users of the 2.6.26
kernel series should upgrade to this version. For details on the fixes,
see the changelog entries and the diffstat below.
I'll also be replying to this message with a copy of the patch between
2.6.26 and 2.6.26.1
The updated 2.6.26.y git tree can be found at:
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.26.y.git
and can be browsed at the normal kernel.org git web browser:
http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.26.y.git;a=summary
thanks,
greg k-h
-------------
Documentation/networking/udplite.txt | 2
Documentation/video4linux/cx18.txt | 12 --
Makefile | 5
arch/ia64/kvm/kvm-ia64.c | 3
arch/powerpc/kvm/powerpc.c | 4
arch/powerpc/platforms/cell/cbe_cpufreq_pmi.c | 6 +
arch/s390/kvm/kvm-s390.c | 4
arch/sparc64/kernel/irq.c | 10 +
arch/sparc64/kernel/ldc.c | 38 +++---
arch/sparc64/kernel/time.c | 15 +-
arch/um/include/init.h | 8 +
arch/x86/Kconfig.cpu | 2
arch/x86/kernel/acpi/sleep.c | 17 ++-
arch/x86/kernel/i387.c | 4
arch/x86/kernel/ptrace.c | 4
arch/x86/kernel/reboot.c | 8 +
arch/x86/kvm/mmu.c | 10 +
arch/x86/kvm/svm.c | 34 ++++--
arch/x86/kvm/vmx.c | 7 -
arch/x86/kvm/x86.c | 5
arch/x86/kvm/x86_emulate.c | 2
arch/x86/mm/init_64.c | 2
drivers/acpi/processor_perflib.c | 15 ++
drivers/cpufreq/cpufreq.c ...diff --git a/Documentation/networking/udplite.txt b/Documentation/networking/udplite.txt
index 3870f28..855d8da 100644
--- a/Documentation/networking/udplite.txt
+++ b/Documentation/networking/udplite.txt
@@ -148,7 +148,7 @@
getsockopt(sockfd, SOL_SOCKET, SO_NO_CHECK, &value, ...);
is meaningless (as in TCP). Packets with a zero checksum field are
- illegal (cf. RFC 3828, sec. 3.1) will be silently discarded.
+ illegal (cf. RFC 3828, sec. 3.1) and will be silently discarded.
4) Fragmentation
diff --git a/Documentation/video4linux/cx18.txt b/Documentation/video4linux/cx18.txt
index 6842c26..63f3aef 100644
--- a/Documentation/video4linux/cx18.txt
+++ b/Documentation/video4linux/cx18.txt
@@ -23,14 +23,8 @@ encoder chip:
Firmware:
-The firmware needs to be extracted from the Windows Hauppauge HVR-1600
-driver, available here:
+You can obtain the firmware files here:
-http://hauppauge.lightpath.net/software/install_cd/hauppauge_cd_3.4d1.zip
+http://dl.ivtvdriver.org/ivtv/firmware/cx18-firmware.tar.gz
-Unzip, then copy the following files to the firmware directory
-and rename them as follows:
-
-Drivers/Driver18/hcw18apu.rom -> v4l-cx23418-apu.fw
-Drivers/Driver18/hcw18enc.rom -> v4l-cx23418-cpu.fw
-Drivers/Driver18/hcw18mlC.rom -> v4l-cx23418-dig.fw
+Untar and copy the .fw files to your firmware directory.
diff --git a/Makefile b/Makefile
index e3c5eb6..c536d7b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 26
-EXTRAVERSION =
+EXTRAVERSION = .1
NAME = Rotary Wombat
# *DOCUMENTATION*
@@ -1133,7 +1133,8 @@ clean: archclean $(clean-dirs)
@find . $(RCS_FIND_IGNORE) \
\( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
-o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
- -o -name '*.symtypes' -o -name 'modules.order' \) \
+ -o -name '*.symtypes' -o -name 'modules.order' \
+ -o -name 'Module.markers' \) \
-type f -print | xargs rm -f
# mrproper - Delete all ...