From bbd63e3cb2852082962340bf97df04153d667b3c7e3ab3a79f3a69380c807caa Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 27 Oct 2008 23:21:37 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=30 --- build-source-timestamp | 2 +- built-in-where | 46 ++- config.tar.bz2 | 4 +- find-provides | 30 +- kabi.tar.bz2 | 4 +- kernel-debug.changes | 75 ++++- kernel-debug.spec | 661 ++++++++++++++++++++----------------- kernel-default.changes | 75 ++++- kernel-default.spec | 661 ++++++++++++++++++++----------------- kernel-dummy.changes | 75 ++++- kernel-dummy.spec | 585 +++++++++++++++++--------------- kernel-kdump.changes | 75 ++++- kernel-kdump.spec | 661 ++++++++++++++++++++----------------- kernel-pae.changes | 75 ++++- kernel-pae.spec | 661 ++++++++++++++++++++----------------- kernel-ppc64.changes | 75 ++++- kernel-ppc64.spec | 661 ++++++++++++++++++++----------------- kernel-ps3.changes | 75 ++++- kernel-ps3.spec | 661 ++++++++++++++++++++----------------- kernel-rt.changes | 75 ++++- kernel-rt.spec | 661 ++++++++++++++++++++----------------- kernel-rt_debug.changes | 75 ++++- kernel-rt_debug.spec | 661 ++++++++++++++++++++----------------- kernel-s390.changes | 75 ++++- kernel-s390.spec | 661 ++++++++++++++++++++----------------- kernel-source-rt.changes | 75 ++++- kernel-source-rt.spec | 596 ++++++++++++++++++--------------- kernel-source.changes | 75 ++++- kernel-source.spec | 596 ++++++++++++++++++--------------- kernel-syms-rt.changes | 75 ++++- kernel-syms-rt.spec | 587 +++++++++++++++++--------------- kernel-syms.changes | 75 ++++- kernel-syms.spec | 587 +++++++++++++++++--------------- kernel-trace.changes | 75 ++++- kernel-trace.spec | 661 ++++++++++++++++++++----------------- kernel-vanilla.changes | 75 ++++- kernel-vanilla.spec | 661 ++++++++++++++++++++----------------- kernel-xen.changes | 75 ++++- kernel-xen.spec | 661 ++++++++++++++++++++----------------- list-exported-symbols | 57 ++++ make-symsets | 111 ------- patches.addon.tar.bz2 | 4 +- patches.apparmor.tar.bz2 | 4 +- patches.arch.tar.bz2 | 4 +- patches.drivers.tar.bz2 | 4 +- patches.fixes.tar.bz2 | 4 +- patches.kernel.org.tar.bz2 | 4 +- patches.rpmify.tar.bz2 | 4 +- patches.rt.tar.bz2 | 4 +- patches.suse.tar.bz2 | 4 +- patches.trace.tar.bz2 | 4 +- patches.uml.tar.bz2 | 4 +- patches.xen.tar.bz2 | 4 +- series.conf | 26 +- split-into-symsets | 40 +++ 55 files changed, 7442 insertions(+), 5084 deletions(-) create mode 100644 list-exported-symbols delete mode 100644 make-symsets create mode 100644 split-into-symsets diff --git a/build-source-timestamp b/build-source-timestamp index a1bdba6a3..ad3c553f1 100644 --- a/build-source-timestamp +++ b/build-source-timestamp @@ -1 +1 @@ -2008-10-24 17:40:47 +0200 +2008-10-27 19:53:11 +0100 diff --git a/built-in-where b/built-in-where index bd952349f..b85f0d680 100644 --- a/built-in-where +++ b/built-in-where @@ -1,5 +1,7 @@ #! /bin/bash +sourcedir=${0%/*} + # A lot of symbols are exported by the main kernel image. Find out # more precisely which built-in.o file defines them, and fill in # that information in Module.symvers. (The built-in.o files are @@ -11,22 +13,44 @@ unset LANG ${!LC_*} # Create a table of all symbol export in a built-in.o file, e.g., -# mtrr_add arch/i386/kernel/cpu/mtrr/built-in +# 0xc87c1f84 ktime_get kernel/built-in EXPORT_SYMBOL_GPL built_in_exports() { - for obj in $(find -name built-in.o -printf '%P\n'); do - nm $obj \ - | sed -nre 's:(00000000)?([0-9a-f]+) A __crc_(.*):\3\t'"${obj%.o}:p" + # a/b/c/built-in.o gets linked into a/b/built-in.o, so ensure + # that we visit sub-directories first to split up symbols as + # much as possible. + for obj in $(find -name built-in.o -printf '%d %P\n' \ + | sort -r \ + | awk '{ print $2 }'); do + $sourcedir/list-exported-symbols -n ${obj%.o} $obj done + + # We could go through the libraries as well, but those functions + # are so unlikely to change that this wouldn't help. + # (All remaining symbols will end up in the vmlinux set.) + #for archive in $(find -name '*.a'); do + # $sourcedir/list-exported-symbols -n ${archive%.a} $archive + #done +} + +# Filter out duplicates from a Module.symvers dump +unique_symbols() { + awk ' + { if ($2 in seen) + next + seen[$2] = 1 + print + } + ' } # Join together the two tables, including all lines from the first -# file that don't have a match in the second. Finally remove the -# duplicate column. -join -t $'\t' -1 2 -2 1 -a 1 \ - <(cut -f1,2,3 | sort -k2) \ - <(built_in_exports | sort -k1) \ +# file that don't have a match in the second. +# Finally, remove the duplicate columns. +join -t $'\t' -j 2 -a 1 \ + <(sort -k2) \ + <(built_in_exports | unique_symbols | sort -k2) \ | awk ' BEGIN { FS = "\t" ; OFS = "\t" } -NF == 3 { print $2, $1, $3 } -NF == 4 { print $2, $1, $4 } +NF == 7 { print $2, $1, $6, $4 } +NF == 4 { print $2, $1, $3, $4 } ' diff --git a/config.tar.bz2 b/config.tar.bz2 index fff85157d..ccff8173a 100644 --- a/config.tar.bz2 +++ b/config.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d9520b8aa0140a38ff2808dc0fdbee34eefde1db2410379385b50ba1b2c5ef7 -size 135658 +oid sha256:d790880c4ee8d0990da9ebf78540883563d597b9738e055fad21d22001838738 +size 135588 diff --git a/find-provides b/find-provides index ec1e4421a..b968ab74d 100644 --- a/find-provides +++ b/find-provides @@ -5,15 +5,27 @@ filelist=($(cat)) printf "%s\n" "${filelist[@]}" | /usr/lib/rpm/find-provides "$@" +sourcedir=${0%/*} +flavor=${1##*-} + +tmpdir=$(mktemp -dt ${0##*/}.XXXXXXXXXX) +trap "rm -rf $tmpdir" EXIT + for file in "${filelist[@]}"; do - case "$file" in - */symsets-*.tar.gz) - flavor=${file%.tar.gz} - flavor=${flavor##*-} - for symset in $(tar tfz "$file" | grep -v '/$'); do - class=${symset##*/} ; class=${class%.*} - echo "kernel($flavor:$class) = ${symset##*.}" - done + case "$file" in + */boot/symvers-*.gz) + zcat "$file" \ + | awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' ;; - esac + *.ko) + $sourcedir/list-exported-symbols $file + ;; + esac +done \ +| $sourcedir/split-into-symsets $tmpdir + +shopt -s nullglob +for symset in $tmpdir/*; do + class=${symset##*/} ; class=${class%.*} + echo "kernel($flavor:$class) = ${symset##*.}" done diff --git a/kabi.tar.bz2 b/kabi.tar.bz2 index f403632cb..47b917566 100644 --- a/kabi.tar.bz2 +++ b/kabi.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1ed544d35336321c457eb9cf956206a163fdff8db6beddc19502ce38f9c844a -size 2265 +oid sha256:e42c4d109b2a8f57b5e2e616a6212b1efe26bd6b8c5628d3249d0017c6a214e3 +size 2272 diff --git a/kernel-debug.changes b/kernel-debug.changes index 195c41775..07fb2258c 100644 --- a/kernel-debug.changes +++ b/kernel-debug.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-debug.spec b/kernel-debug.spec index 05abdab69..da29cff71 100644 --- a/kernel-debug.spec +++ b/kernel-debug.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-debug (Version 2.6.27.3) +# spec file for package kernel-debug (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-debug debug $(case debug in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/debug$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-debug Summary: A Debug Version of the Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -149,8 +149,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -215,12 +216,12 @@ Only use this kernel when investigating problems. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-debug-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-debug-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -299,7 +300,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -469,20 +476,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-debug.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/debug # so that kernel-source + kernel-debug is sufficient for building # modules that have modversions as well. @@ -606,6 +599,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-debug.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -700,7 +726,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -737,7 +763,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -752,6 +778,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1084,7 +1155,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1134,7 +1205,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1176,7 +1247,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1415,15 +1486,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1535,7 +1606,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2701,7 +2772,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2850,7 +2921,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3210,7 +3281,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3436,7 +3507,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3488,9 +3559,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3556,7 +3627,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4504,7 +4575,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4548,16 +4619,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4686,7 +4757,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4710,7 +4781,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5038,7 +5109,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5258,7 +5329,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5417,7 +5488,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5467,7 +5538,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5527,11 +5598,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5709,7 +5780,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5722,7 +5793,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5827,7 +5898,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5962,7 +6033,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5981,7 +6052,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6067,7 +6138,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6083,7 +6154,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6185,9 +6256,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6206,7 +6277,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6235,7 +6306,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6277,7 +6348,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6561,16 +6632,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6595,12 +6666,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6634,12 +6705,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6647,7 +6718,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6680,14 +6751,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6708,7 +6779,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6810,7 +6881,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6819,13 +6890,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7515,7 +7586,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7632,7 +7703,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7931,7 +8002,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7953,7 +8024,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8050,12 +8121,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8201,7 +8272,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8328,7 +8399,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8353,7 +8424,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8568,7 +8639,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8778,7 +8849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8849,7 +8920,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8928,7 +8999,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8978,7 +9049,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8990,7 +9061,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9019,7 +9090,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9033,7 +9104,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9064,13 +9135,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9242,7 +9313,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9545,7 +9616,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9606,7 +9677,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9699,7 +9770,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9930,7 +10001,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10320,7 +10391,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10334,7 +10405,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10356,7 +10427,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10390,7 +10461,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10475,10 +10546,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10766,7 +10837,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10780,7 +10851,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10902,13 +10973,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11243,7 +11314,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11301,7 +11372,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11360,7 +11431,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11454,12 +11525,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11648,10 +11719,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11841,7 +11912,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11865,10 +11936,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11920,7 +11991,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11996,7 +12067,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12052,7 +12123,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12122,7 +12193,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12160,12 +12231,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12523,7 +12594,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12673,10 +12744,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12743,7 +12814,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13101,10 +13172,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13229,7 +13300,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13256,7 +13327,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13390,9 +13461,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13546,7 +13617,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13634,10 +13705,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13875,7 +13946,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13917,9 +13988,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13947,7 +14018,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13995,7 +14066,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14042,21 +14113,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14173,7 +14244,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14283,7 +14354,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14293,11 +14364,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14388,12 +14459,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14507,7 +14578,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14662,11 +14733,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14711,7 +14782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14909,7 +14980,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14939,7 +15010,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15000,7 +15071,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15012,7 +15083,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15047,7 +15118,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15103,7 +15174,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15266,9 +15337,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15339,7 +15410,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15384,7 +15455,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15509,7 +15580,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15856,7 +15927,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16221,10 +16292,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16253,7 +16324,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16513,7 +16584,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16647,7 +16718,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16758,7 +16829,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16788,7 +16859,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16826,7 +16897,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16885,7 +16956,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16907,7 +16978,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16925,7 +16996,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17017,7 +17088,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17407,10 +17478,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17418,7 +17489,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17821,7 +17892,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18767,7 +18838,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18778,7 +18849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18798,7 +18869,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18848,7 +18919,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18865,7 +18936,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18911,7 +18982,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19092,7 +19163,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19173,7 +19244,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19289,7 +19360,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19335,7 +19406,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19354,7 +19425,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19427,7 +19498,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19560,7 +19631,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19939,7 +20010,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20078,7 +20149,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20153,7 +20224,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20216,7 +20287,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20302,7 +20373,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20342,7 +20413,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20372,7 +20443,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20389,7 +20460,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20439,7 +20510,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20592,7 +20663,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20845,11 +20916,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21332,7 +21403,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21387,7 +21458,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21568,13 +21639,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21661,9 +21732,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21785,9 +21856,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22021,16 +22092,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22276,7 +22347,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22303,7 +22374,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22477,7 +22548,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22702,7 +22773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22785,7 +22856,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22860,7 +22931,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23085,7 +23156,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23239,7 +23310,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23285,7 +23356,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23338,10 +23409,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23432,13 +23503,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23513,12 +23584,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23660,7 +23731,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23740,7 +23811,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23814,7 +23885,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23864,7 +23935,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23934,7 +24005,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23959,7 +24030,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24060,7 +24131,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24108,18 +24179,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24152,7 +24223,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24312,7 +24383,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24414,7 +24485,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24441,7 +24512,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24471,10 +24542,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24517,7 +24588,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24556,7 +24627,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24618,10 +24689,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24661,7 +24732,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24684,7 +24755,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24693,7 +24764,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24716,7 +24787,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24751,7 +24822,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24926,7 +24997,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25018,7 +25089,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25175,7 +25246,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25220,7 +25291,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25282,7 +25353,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25392,7 +25463,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25409,7 +25480,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25481,7 +25552,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25534,7 +25605,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25637,14 +25708,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25778,5 +25849,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-default.changes b/kernel-default.changes index 195c41775..07fb2258c 100644 --- a/kernel-default.changes +++ b/kernel-default.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-default.spec b/kernel-default.spec index b3703f1cb..148542405 100644 --- a/kernel-default.spec +++ b/kernel-default.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-default (Version 2.6.27.3) +# spec file for package kernel-default (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-default default $(case default in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/default$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-default Summary: The Standard Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 Provides: k_athlon k_debug k_deflt k_deflt_22 k_deflt_24 k_eide k_laptop k_orig k_pentiu k_pos_ibm k_psmp k_smp k_smp_22 k_smp_24 smp kernel-smp @@ -168,8 +168,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -233,12 +234,12 @@ The standard kernel for both uniprocessor and multiprocessor systems. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-default-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-default-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -317,7 +318,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -487,20 +494,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-default.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/default # so that kernel-source + kernel-default is sufficient for building # modules that have modversions as well. @@ -624,6 +617,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-default.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -717,7 +743,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -753,7 +779,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -768,6 +794,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1100,7 +1171,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1150,7 +1221,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1192,7 +1263,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1431,15 +1502,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1551,7 +1622,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2717,7 +2788,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2866,7 +2937,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3226,7 +3297,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3452,7 +3523,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3504,9 +3575,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3572,7 +3643,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4520,7 +4591,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4564,16 +4635,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4702,7 +4773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4726,7 +4797,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5054,7 +5125,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5274,7 +5345,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5433,7 +5504,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5483,7 +5554,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5543,11 +5614,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5725,7 +5796,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5738,7 +5809,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5843,7 +5914,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5978,7 +6049,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5997,7 +6068,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6083,7 +6154,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6099,7 +6170,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6201,9 +6272,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6222,7 +6293,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6251,7 +6322,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6293,7 +6364,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6577,16 +6648,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6611,12 +6682,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6650,12 +6721,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6663,7 +6734,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6696,14 +6767,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6724,7 +6795,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6826,7 +6897,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6835,13 +6906,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7531,7 +7602,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7648,7 +7719,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7947,7 +8018,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7969,7 +8040,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8066,12 +8137,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8217,7 +8288,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8344,7 +8415,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8369,7 +8440,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8584,7 +8655,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8794,7 +8865,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8865,7 +8936,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8944,7 +9015,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8994,7 +9065,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -9006,7 +9077,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9035,7 +9106,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9049,7 +9120,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9080,13 +9151,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9258,7 +9329,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9561,7 +9632,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9622,7 +9693,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9715,7 +9786,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9946,7 +10017,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10336,7 +10407,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10350,7 +10421,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10372,7 +10443,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10406,7 +10477,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10491,10 +10562,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10782,7 +10853,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10796,7 +10867,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10918,13 +10989,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11259,7 +11330,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11317,7 +11388,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11376,7 +11447,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11470,12 +11541,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11664,10 +11735,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11857,7 +11928,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11881,10 +11952,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11936,7 +12007,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12012,7 +12083,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12068,7 +12139,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12138,7 +12209,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12176,12 +12247,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12539,7 +12610,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12689,10 +12760,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12759,7 +12830,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13117,10 +13188,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13245,7 +13316,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13272,7 +13343,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13406,9 +13477,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13562,7 +13633,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13650,10 +13721,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13891,7 +13962,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13933,9 +14004,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13963,7 +14034,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14011,7 +14082,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14058,21 +14129,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14189,7 +14260,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14299,7 +14370,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14309,11 +14380,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14404,12 +14475,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14523,7 +14594,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14678,11 +14749,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14727,7 +14798,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14925,7 +14996,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14955,7 +15026,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15016,7 +15087,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15028,7 +15099,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15063,7 +15134,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15119,7 +15190,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15282,9 +15353,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15355,7 +15426,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15400,7 +15471,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15525,7 +15596,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15872,7 +15943,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16237,10 +16308,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16269,7 +16340,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16529,7 +16600,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16663,7 +16734,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16774,7 +16845,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16804,7 +16875,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16842,7 +16913,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16901,7 +16972,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16923,7 +16994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16941,7 +17012,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17033,7 +17104,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17423,10 +17494,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17434,7 +17505,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17837,7 +17908,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18783,7 +18854,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18794,7 +18865,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18814,7 +18885,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18864,7 +18935,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18881,7 +18952,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18927,7 +18998,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19108,7 +19179,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19189,7 +19260,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19305,7 +19376,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19351,7 +19422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19370,7 +19441,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19443,7 +19514,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19576,7 +19647,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19955,7 +20026,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20094,7 +20165,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20169,7 +20240,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20232,7 +20303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20318,7 +20389,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20358,7 +20429,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20388,7 +20459,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20405,7 +20476,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20455,7 +20526,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20608,7 +20679,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20861,11 +20932,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21348,7 +21419,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21403,7 +21474,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21584,13 +21655,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21677,9 +21748,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21801,9 +21872,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22037,16 +22108,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22292,7 +22363,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22319,7 +22390,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22493,7 +22564,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22718,7 +22789,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22801,7 +22872,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22876,7 +22947,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23101,7 +23172,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23255,7 +23326,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23301,7 +23372,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23354,10 +23425,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23448,13 +23519,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23529,12 +23600,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23676,7 +23747,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23756,7 +23827,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23830,7 +23901,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23880,7 +23951,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23950,7 +24021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23975,7 +24046,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24076,7 +24147,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24124,18 +24195,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24168,7 +24239,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24328,7 +24399,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24430,7 +24501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24457,7 +24528,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24487,10 +24558,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24533,7 +24604,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24572,7 +24643,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24634,10 +24705,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24677,7 +24748,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24700,7 +24771,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24709,7 +24780,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24732,7 +24803,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24767,7 +24838,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24942,7 +25013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25034,7 +25105,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25191,7 +25262,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25236,7 +25307,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25298,7 +25369,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25408,7 +25479,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25425,7 +25496,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25497,7 +25568,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25550,7 +25621,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25653,14 +25724,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25794,5 +25865,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-dummy.changes b/kernel-dummy.changes index 195c41775..07fb2258c 100644 --- a/kernel-dummy.changes +++ b/kernel-dummy.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-dummy.spec b/kernel-dummy.spec index 7863b3df2..86493c6b0 100644 --- a/kernel-dummy.spec +++ b/kernel-dummy.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-dummy (Version 2.6.27.3) +# spec file for package kernel-dummy (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -22,8 +22,8 @@ Url: http://www.kernel.org/ Name: kernel-dummy Summary: Internal dummy package for synchronizing release numbers -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel AutoReqProv: off @@ -36,7 +36,7 @@ Authors: -------- Andreas Gruenbacher -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %install rm -rf %buildroot @@ -47,6 +47,51 @@ echo dummy > %buildroot/etc/dummy %defattr(-, root, root) /etc/dummy %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -379,7 +424,7 @@ echo dummy > %buildroot/etc/dummy Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -429,7 +474,7 @@ echo dummy > %buildroot/etc/dummy * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -471,7 +516,7 @@ echo dummy > %buildroot/etc/dummy - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -710,15 +755,15 @@ echo dummy > %buildroot/etc/dummy - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -830,7 +875,7 @@ echo dummy > %buildroot/etc/dummy BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -1996,7 +2041,7 @@ echo dummy > %buildroot/etc/dummy * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2145,7 +2190,7 @@ echo dummy > %buildroot/etc/dummy * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -2505,7 +2550,7 @@ echo dummy > %buildroot/etc/dummy - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -2731,7 +2776,7 @@ echo dummy > %buildroot/etc/dummy Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -2783,9 +2828,9 @@ echo dummy > %buildroot/etc/dummy (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -2851,7 +2896,7 @@ echo dummy > %buildroot/etc/dummy * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -3799,7 +3844,7 @@ echo dummy > %buildroot/etc/dummy $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -3843,16 +3888,16 @@ echo dummy > %buildroot/etc/dummy * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -3981,7 +4026,7 @@ echo dummy > %buildroot/etc/dummy - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4005,7 +4050,7 @@ echo dummy > %buildroot/etc/dummy - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -4333,7 +4378,7 @@ echo dummy > %buildroot/etc/dummy initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -4553,7 +4598,7 @@ echo dummy > %buildroot/etc/dummy - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -4712,7 +4757,7 @@ echo dummy > %buildroot/etc/dummy Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -4762,7 +4807,7 @@ echo dummy > %buildroot/etc/dummy - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -4822,11 +4867,11 @@ echo dummy > %buildroot/etc/dummy * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5004,7 +5049,7 @@ echo dummy > %buildroot/etc/dummy PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5017,7 +5062,7 @@ echo dummy > %buildroot/etc/dummy * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5122,7 +5167,7 @@ echo dummy > %buildroot/etc/dummy - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5257,7 +5302,7 @@ echo dummy > %buildroot/etc/dummy * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5276,7 +5321,7 @@ echo dummy > %buildroot/etc/dummy - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -5362,7 +5407,7 @@ echo dummy > %buildroot/etc/dummy diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -5378,7 +5423,7 @@ echo dummy > %buildroot/etc/dummy - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -5480,9 +5525,9 @@ echo dummy > %buildroot/etc/dummy - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -5501,7 +5546,7 @@ echo dummy > %buildroot/etc/dummy - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -5530,7 +5575,7 @@ echo dummy > %buildroot/etc/dummy - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -5572,7 +5617,7 @@ echo dummy > %buildroot/etc/dummy * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -5856,16 +5901,16 @@ echo dummy > %buildroot/etc/dummy * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -5890,12 +5935,12 @@ echo dummy > %buildroot/etc/dummy * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -5929,12 +5974,12 @@ echo dummy > %buildroot/etc/dummy * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -5942,7 +5987,7 @@ echo dummy > %buildroot/etc/dummy * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -5975,14 +6020,14 @@ echo dummy > %buildroot/etc/dummy used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6003,7 +6048,7 @@ echo dummy > %buildroot/etc/dummy - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6105,7 +6150,7 @@ echo dummy > %buildroot/etc/dummy - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6114,13 +6159,13 @@ echo dummy > %buildroot/etc/dummy - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -6810,7 +6855,7 @@ echo dummy > %buildroot/etc/dummy * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -6927,7 +6972,7 @@ echo dummy > %buildroot/etc/dummy - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7226,7 +7271,7 @@ echo dummy > %buildroot/etc/dummy Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7248,7 +7293,7 @@ echo dummy > %buildroot/etc/dummy switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -7345,12 +7390,12 @@ echo dummy > %buildroot/etc/dummy * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -7496,7 +7541,7 @@ echo dummy > %buildroot/etc/dummy * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -7623,7 +7668,7 @@ echo dummy > %buildroot/etc/dummy - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -7648,7 +7693,7 @@ echo dummy > %buildroot/etc/dummy * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -7863,7 +7908,7 @@ echo dummy > %buildroot/etc/dummy - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8073,7 +8118,7 @@ echo dummy > %buildroot/etc/dummy fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8144,7 +8189,7 @@ echo dummy > %buildroot/etc/dummy [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8223,7 +8268,7 @@ echo dummy > %buildroot/etc/dummy - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8273,7 +8318,7 @@ echo dummy > %buildroot/etc/dummy - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8285,7 +8330,7 @@ echo dummy > %buildroot/etc/dummy * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -8314,7 +8359,7 @@ echo dummy > %buildroot/etc/dummy protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -8328,7 +8373,7 @@ echo dummy > %buildroot/etc/dummy sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -8359,13 +8404,13 @@ echo dummy > %buildroot/etc/dummy * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -8537,7 +8582,7 @@ echo dummy > %buildroot/etc/dummy * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -8840,7 +8885,7 @@ echo dummy > %buildroot/etc/dummy - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -8901,7 +8946,7 @@ echo dummy > %buildroot/etc/dummy * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -8994,7 +9039,7 @@ echo dummy > %buildroot/etc/dummy * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9225,7 +9270,7 @@ echo dummy > %buildroot/etc/dummy * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -9615,7 +9660,7 @@ echo dummy > %buildroot/etc/dummy for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -9629,7 +9674,7 @@ echo dummy > %buildroot/etc/dummy * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -9651,7 +9696,7 @@ echo dummy > %buildroot/etc/dummy - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -9685,7 +9730,7 @@ echo dummy > %buildroot/etc/dummy - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -9770,10 +9815,10 @@ echo dummy > %buildroot/etc/dummy * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10061,7 +10106,7 @@ echo dummy > %buildroot/etc/dummy unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10075,7 +10120,7 @@ echo dummy > %buildroot/etc/dummy * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10197,13 +10242,13 @@ echo dummy > %buildroot/etc/dummy - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -10538,7 +10583,7 @@ echo dummy > %buildroot/etc/dummy remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -10596,7 +10641,7 @@ echo dummy > %buildroot/etc/dummy * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -10655,7 +10700,7 @@ echo dummy > %buildroot/etc/dummy - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -10749,12 +10794,12 @@ echo dummy > %buildroot/etc/dummy * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -10943,10 +10988,10 @@ echo dummy > %buildroot/etc/dummy * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11136,7 +11181,7 @@ echo dummy > %buildroot/etc/dummy (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11160,10 +11205,10 @@ echo dummy > %buildroot/etc/dummy * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11215,7 +11260,7 @@ echo dummy > %buildroot/etc/dummy * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11291,7 +11336,7 @@ echo dummy > %buildroot/etc/dummy * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -11347,7 +11392,7 @@ echo dummy > %buildroot/etc/dummy * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -11417,7 +11462,7 @@ echo dummy > %buildroot/etc/dummy * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -11455,12 +11500,12 @@ echo dummy > %buildroot/etc/dummy the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -11818,7 +11863,7 @@ echo dummy > %buildroot/etc/dummy * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -11968,10 +12013,10 @@ echo dummy > %buildroot/etc/dummy - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12038,7 +12083,7 @@ echo dummy > %buildroot/etc/dummy Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -12396,10 +12441,10 @@ echo dummy > %buildroot/etc/dummy - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -12524,7 +12569,7 @@ echo dummy > %buildroot/etc/dummy scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -12551,7 +12596,7 @@ echo dummy > %buildroot/etc/dummy - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -12685,9 +12730,9 @@ echo dummy > %buildroot/etc/dummy - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -12841,7 +12886,7 @@ echo dummy > %buildroot/etc/dummy * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -12929,10 +12974,10 @@ echo dummy > %buildroot/etc/dummy (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13170,7 +13215,7 @@ echo dummy > %buildroot/etc/dummy * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13212,9 +13257,9 @@ echo dummy > %buildroot/etc/dummy dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13242,7 +13287,7 @@ echo dummy > %buildroot/etc/dummy mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13290,7 +13335,7 @@ echo dummy > %buildroot/etc/dummy huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -13337,21 +13382,21 @@ echo dummy > %buildroot/etc/dummy - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -13468,7 +13513,7 @@ echo dummy > %buildroot/etc/dummy - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -13578,7 +13623,7 @@ echo dummy > %buildroot/etc/dummy * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -13588,11 +13633,11 @@ echo dummy > %buildroot/etc/dummy - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -13683,12 +13728,12 @@ echo dummy > %buildroot/etc/dummy rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -13802,7 +13847,7 @@ echo dummy > %buildroot/etc/dummy * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -13957,11 +14002,11 @@ echo dummy > %buildroot/etc/dummy * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14006,7 +14051,7 @@ echo dummy > %buildroot/etc/dummy - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14204,7 +14249,7 @@ echo dummy > %buildroot/etc/dummy * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14234,7 +14279,7 @@ echo dummy > %buildroot/etc/dummy symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14295,7 +14340,7 @@ echo dummy > %buildroot/etc/dummy * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -14307,7 +14352,7 @@ echo dummy > %buildroot/etc/dummy * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -14342,7 +14387,7 @@ echo dummy > %buildroot/etc/dummy * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -14398,7 +14443,7 @@ echo dummy > %buildroot/etc/dummy Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -14561,9 +14606,9 @@ echo dummy > %buildroot/etc/dummy * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -14634,7 +14679,7 @@ echo dummy > %buildroot/etc/dummy - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -14679,7 +14724,7 @@ echo dummy > %buildroot/etc/dummy Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -14804,7 +14849,7 @@ echo dummy > %buildroot/etc/dummy * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15151,7 +15196,7 @@ echo dummy > %buildroot/etc/dummy * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -15516,10 +15561,10 @@ echo dummy > %buildroot/etc/dummy * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -15548,7 +15593,7 @@ echo dummy > %buildroot/etc/dummy * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -15808,7 +15853,7 @@ echo dummy > %buildroot/etc/dummy - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -15942,7 +15987,7 @@ echo dummy > %buildroot/etc/dummy * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16053,7 +16098,7 @@ echo dummy > %buildroot/etc/dummy * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16083,7 +16128,7 @@ echo dummy > %buildroot/etc/dummy - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16121,7 +16166,7 @@ echo dummy > %buildroot/etc/dummy * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16180,7 +16225,7 @@ echo dummy > %buildroot/etc/dummy and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16202,7 +16247,7 @@ echo dummy > %buildroot/etc/dummy * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16220,7 +16265,7 @@ echo dummy > %buildroot/etc/dummy - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -16312,7 +16357,7 @@ echo dummy > %buildroot/etc/dummy - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -16702,10 +16747,10 @@ echo dummy > %buildroot/etc/dummy - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -16713,7 +16758,7 @@ echo dummy > %buildroot/etc/dummy default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17116,7 +17161,7 @@ echo dummy > %buildroot/etc/dummy - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18062,7 +18107,7 @@ echo dummy > %buildroot/etc/dummy option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18073,7 +18118,7 @@ echo dummy > %buildroot/etc/dummy Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18093,7 +18138,7 @@ echo dummy > %buildroot/etc/dummy - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18143,7 +18188,7 @@ echo dummy > %buildroot/etc/dummy Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18160,7 +18205,7 @@ echo dummy > %buildroot/etc/dummy reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18206,7 +18251,7 @@ echo dummy > %buildroot/etc/dummy - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -18387,7 +18432,7 @@ echo dummy > %buildroot/etc/dummy - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -18468,7 +18513,7 @@ echo dummy > %buildroot/etc/dummy - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -18584,7 +18629,7 @@ echo dummy > %buildroot/etc/dummy convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -18630,7 +18675,7 @@ echo dummy > %buildroot/etc/dummy * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -18649,7 +18694,7 @@ echo dummy > %buildroot/etc/dummy - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -18722,7 +18767,7 @@ echo dummy > %buildroot/etc/dummy - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -18855,7 +18900,7 @@ echo dummy > %buildroot/etc/dummy - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19234,7 +19279,7 @@ echo dummy > %buildroot/etc/dummy ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -19373,7 +19418,7 @@ echo dummy > %buildroot/etc/dummy - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -19448,7 +19493,7 @@ echo dummy > %buildroot/etc/dummy * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -19511,7 +19556,7 @@ echo dummy > %buildroot/etc/dummy - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -19597,7 +19642,7 @@ echo dummy > %buildroot/etc/dummy * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -19637,7 +19682,7 @@ echo dummy > %buildroot/etc/dummy at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -19667,7 +19712,7 @@ echo dummy > %buildroot/etc/dummy - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -19684,7 +19729,7 @@ echo dummy > %buildroot/etc/dummy * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -19734,7 +19779,7 @@ echo dummy > %buildroot/etc/dummy TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -19887,7 +19932,7 @@ echo dummy > %buildroot/etc/dummy - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20140,11 +20185,11 @@ echo dummy > %buildroot/etc/dummy - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -20627,7 +20672,7 @@ echo dummy > %buildroot/etc/dummy new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -20682,7 +20727,7 @@ echo dummy > %buildroot/etc/dummy if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -20863,13 +20908,13 @@ echo dummy > %buildroot/etc/dummy floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -20956,9 +21001,9 @@ echo dummy > %buildroot/etc/dummy - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21080,9 +21125,9 @@ echo dummy > %buildroot/etc/dummy in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -21316,16 +21361,16 @@ echo dummy > %buildroot/etc/dummy * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -21571,7 +21616,7 @@ echo dummy > %buildroot/etc/dummy * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -21598,7 +21643,7 @@ echo dummy > %buildroot/etc/dummy * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -21772,7 +21817,7 @@ echo dummy > %buildroot/etc/dummy * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -21997,7 +22042,7 @@ echo dummy > %buildroot/etc/dummy Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22080,7 +22125,7 @@ echo dummy > %buildroot/etc/dummy - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22155,7 +22200,7 @@ echo dummy > %buildroot/etc/dummy * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -22380,7 +22425,7 @@ echo dummy > %buildroot/etc/dummy * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -22534,7 +22579,7 @@ echo dummy > %buildroot/etc/dummy - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -22580,7 +22625,7 @@ echo dummy > %buildroot/etc/dummy - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -22633,10 +22678,10 @@ echo dummy > %buildroot/etc/dummy * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -22727,13 +22772,13 @@ echo dummy > %buildroot/etc/dummy * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -22808,12 +22853,12 @@ echo dummy > %buildroot/etc/dummy - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -22955,7 +23000,7 @@ echo dummy > %buildroot/etc/dummy - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23035,7 +23080,7 @@ echo dummy > %buildroot/etc/dummy - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23109,7 +23154,7 @@ echo dummy > %buildroot/etc/dummy - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23159,7 +23204,7 @@ echo dummy > %buildroot/etc/dummy upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23229,7 +23274,7 @@ echo dummy > %buildroot/etc/dummy * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23254,7 +23299,7 @@ echo dummy > %buildroot/etc/dummy - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -23355,7 +23400,7 @@ echo dummy > %buildroot/etc/dummy - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -23403,18 +23448,18 @@ echo dummy > %buildroot/etc/dummy * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -23447,7 +23492,7 @@ echo dummy > %buildroot/etc/dummy * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -23607,7 +23652,7 @@ echo dummy > %buildroot/etc/dummy - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -23709,7 +23754,7 @@ echo dummy > %buildroot/etc/dummy hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -23736,7 +23781,7 @@ echo dummy > %buildroot/etc/dummy created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -23766,10 +23811,10 @@ echo dummy > %buildroot/etc/dummy * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -23812,7 +23857,7 @@ echo dummy > %buildroot/etc/dummy * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -23851,7 +23896,7 @@ echo dummy > %buildroot/etc/dummy - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -23913,10 +23958,10 @@ echo dummy > %buildroot/etc/dummy - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -23956,7 +24001,7 @@ echo dummy > %buildroot/etc/dummy * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -23979,7 +24024,7 @@ echo dummy > %buildroot/etc/dummy * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -23988,7 +24033,7 @@ echo dummy > %buildroot/etc/dummy - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24011,7 +24056,7 @@ echo dummy > %buildroot/etc/dummy * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24046,7 +24091,7 @@ echo dummy > %buildroot/etc/dummy - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24221,7 +24266,7 @@ echo dummy > %buildroot/etc/dummy input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -24313,7 +24358,7 @@ echo dummy > %buildroot/etc/dummy for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -24470,7 +24515,7 @@ echo dummy > %buildroot/etc/dummy - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -24515,7 +24560,7 @@ echo dummy > %buildroot/etc/dummy iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -24577,7 +24622,7 @@ echo dummy > %buildroot/etc/dummy - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -24687,7 +24732,7 @@ echo dummy > %buildroot/etc/dummy autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -24704,7 +24749,7 @@ echo dummy > %buildroot/etc/dummy - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -24776,7 +24821,7 @@ echo dummy > %buildroot/etc/dummy - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -24829,7 +24874,7 @@ echo dummy > %buildroot/etc/dummy define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -24932,14 +24977,14 @@ echo dummy > %buildroot/etc/dummy - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25073,5 +25118,5 @@ echo dummy > %buildroot/etc/dummy - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-kdump.changes b/kernel-kdump.changes index 195c41775..07fb2258c 100644 --- a/kernel-kdump.changes +++ b/kernel-kdump.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-kdump.spec b/kernel-kdump.spec index 2c9828ea6..1f979c1ff 100644 --- a/kernel-kdump.spec +++ b/kernel-kdump.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-kdump (Version 2.6.27.3) +# spec file for package kernel-kdump (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-kdump kdump $(case kdump in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/kdump$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-kdump Summary: kernel for kdump -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch ppc %else @@ -146,8 +146,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -214,12 +215,12 @@ crashed kernel. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-kdump-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-kdump-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -298,7 +299,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -468,20 +475,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-kdump.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/kdump # so that kernel-source + kernel-kdump is sufficient for building # modules that have modversions as well. @@ -605,6 +598,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-kdump.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -701,7 +727,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -740,7 +766,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -755,6 +781,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1087,7 +1158,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1137,7 +1208,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1179,7 +1250,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1418,15 +1489,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1538,7 +1609,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2704,7 +2775,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2853,7 +2924,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3213,7 +3284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3439,7 +3510,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3491,9 +3562,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3559,7 +3630,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4507,7 +4578,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4551,16 +4622,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4689,7 +4760,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4713,7 +4784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5041,7 +5112,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5261,7 +5332,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5420,7 +5491,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5470,7 +5541,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5530,11 +5601,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5712,7 +5783,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5725,7 +5796,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5830,7 +5901,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5965,7 +6036,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5984,7 +6055,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6070,7 +6141,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6086,7 +6157,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6188,9 +6259,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6209,7 +6280,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6238,7 +6309,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6280,7 +6351,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6564,16 +6635,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6598,12 +6669,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6637,12 +6708,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6650,7 +6721,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6683,14 +6754,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6711,7 +6782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6813,7 +6884,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6822,13 +6893,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7518,7 +7589,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7635,7 +7706,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7934,7 +8005,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7956,7 +8027,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8053,12 +8124,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8204,7 +8275,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8331,7 +8402,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8356,7 +8427,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8571,7 +8642,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8781,7 +8852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8852,7 +8923,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8931,7 +9002,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8981,7 +9052,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8993,7 +9064,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9022,7 +9093,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9036,7 +9107,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9067,13 +9138,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9245,7 +9316,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9548,7 +9619,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9609,7 +9680,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9702,7 +9773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9933,7 +10004,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10323,7 +10394,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10337,7 +10408,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10359,7 +10430,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10393,7 +10464,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10478,10 +10549,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10769,7 +10840,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10783,7 +10854,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10905,13 +10976,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11246,7 +11317,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11304,7 +11375,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11363,7 +11434,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11457,12 +11528,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11651,10 +11722,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11844,7 +11915,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11868,10 +11939,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11923,7 +11994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11999,7 +12070,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12055,7 +12126,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12125,7 +12196,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12163,12 +12234,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12526,7 +12597,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12676,10 +12747,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12746,7 +12817,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13104,10 +13175,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13232,7 +13303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13259,7 +13330,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13393,9 +13464,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13549,7 +13620,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13637,10 +13708,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13878,7 +13949,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13920,9 +13991,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13950,7 +14021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13998,7 +14069,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14045,21 +14116,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14176,7 +14247,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14286,7 +14357,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14296,11 +14367,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14391,12 +14462,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14510,7 +14581,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14665,11 +14736,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14714,7 +14785,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14912,7 +14983,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14942,7 +15013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15003,7 +15074,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15015,7 +15086,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15050,7 +15121,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15106,7 +15177,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15269,9 +15340,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15342,7 +15413,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15387,7 +15458,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15512,7 +15583,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15859,7 +15930,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16224,10 +16295,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16256,7 +16327,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16516,7 +16587,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16650,7 +16721,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16761,7 +16832,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16791,7 +16862,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16829,7 +16900,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16888,7 +16959,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16910,7 +16981,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16928,7 +16999,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17020,7 +17091,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17410,10 +17481,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17421,7 +17492,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17824,7 +17895,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18770,7 +18841,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18781,7 +18852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18801,7 +18872,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18851,7 +18922,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18868,7 +18939,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18914,7 +18985,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19095,7 +19166,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19176,7 +19247,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19292,7 +19363,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19338,7 +19409,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19357,7 +19428,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19430,7 +19501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19563,7 +19634,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19942,7 +20013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20081,7 +20152,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20156,7 +20227,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20219,7 +20290,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20305,7 +20376,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20345,7 +20416,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20375,7 +20446,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20392,7 +20463,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20442,7 +20513,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20595,7 +20666,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20848,11 +20919,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21335,7 +21406,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21390,7 +21461,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21571,13 +21642,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21664,9 +21735,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21788,9 +21859,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22024,16 +22095,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22279,7 +22350,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22306,7 +22377,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22480,7 +22551,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22705,7 +22776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22788,7 +22859,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22863,7 +22934,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23088,7 +23159,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23242,7 +23313,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23288,7 +23359,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23341,10 +23412,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23435,13 +23506,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23516,12 +23587,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23663,7 +23734,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23743,7 +23814,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23817,7 +23888,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23867,7 +23938,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23937,7 +24008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23962,7 +24033,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24063,7 +24134,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24111,18 +24182,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24155,7 +24226,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24315,7 +24386,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24417,7 +24488,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24444,7 +24515,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24474,10 +24545,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24520,7 +24591,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24559,7 +24630,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24621,10 +24692,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24664,7 +24735,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24687,7 +24758,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24696,7 +24767,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24719,7 +24790,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24754,7 +24825,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24929,7 +25000,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25021,7 +25092,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25178,7 +25249,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25223,7 +25294,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25285,7 +25356,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25395,7 +25466,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25412,7 +25483,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25484,7 +25555,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25537,7 +25608,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25640,14 +25711,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25781,5 +25852,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-pae.changes b/kernel-pae.changes index 195c41775..07fb2258c 100644 --- a/kernel-pae.changes +++ b/kernel-pae.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-pae.spec b/kernel-pae.spec index 96585eaff..3e0e211b4 100644 --- a/kernel-pae.spec +++ b/kernel-pae.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-pae (Version 2.6.27.3) +# spec file for package kernel-pae (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-pae pae $(case pae in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/pae$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-pae Summary: Kernel with PAE Support -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif Provides: k_smp4G kernel-bigsmp Obsoletes: k_smp4G kernel-bigsmp @@ -143,8 +143,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -215,12 +216,12 @@ that support it, regardless of the amount of main memory. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-pae-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-pae-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -299,7 +300,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -469,20 +476,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-pae.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/pae # so that kernel-source + kernel-pae is sufficient for building # modules that have modversions as well. @@ -606,6 +599,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-pae.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -706,7 +732,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -749,7 +775,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -764,6 +790,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1096,7 +1167,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1146,7 +1217,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1188,7 +1259,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1427,15 +1498,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1547,7 +1618,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2713,7 +2784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2862,7 +2933,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3222,7 +3293,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3448,7 +3519,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3500,9 +3571,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3568,7 +3639,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4516,7 +4587,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4560,16 +4631,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4698,7 +4769,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4722,7 +4793,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5050,7 +5121,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5270,7 +5341,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5429,7 +5500,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5479,7 +5550,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5539,11 +5610,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5721,7 +5792,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5734,7 +5805,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5839,7 +5910,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5974,7 +6045,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5993,7 +6064,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6079,7 +6150,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6095,7 +6166,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6197,9 +6268,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6218,7 +6289,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6247,7 +6318,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6289,7 +6360,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6573,16 +6644,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6607,12 +6678,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6646,12 +6717,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6659,7 +6730,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6692,14 +6763,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6720,7 +6791,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6822,7 +6893,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6831,13 +6902,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7527,7 +7598,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7644,7 +7715,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7943,7 +8014,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7965,7 +8036,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8062,12 +8133,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8213,7 +8284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8340,7 +8411,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8365,7 +8436,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8580,7 +8651,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8790,7 +8861,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8861,7 +8932,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8940,7 +9011,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8990,7 +9061,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -9002,7 +9073,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9031,7 +9102,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9045,7 +9116,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9076,13 +9147,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9254,7 +9325,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9557,7 +9628,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9618,7 +9689,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9711,7 +9782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9942,7 +10013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10332,7 +10403,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10346,7 +10417,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10368,7 +10439,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10402,7 +10473,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10487,10 +10558,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10778,7 +10849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10792,7 +10863,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10914,13 +10985,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11255,7 +11326,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11313,7 +11384,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11372,7 +11443,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11466,12 +11537,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11660,10 +11731,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11853,7 +11924,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11877,10 +11948,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11932,7 +12003,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12008,7 +12079,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12064,7 +12135,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12134,7 +12205,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12172,12 +12243,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12535,7 +12606,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12685,10 +12756,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12755,7 +12826,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13113,10 +13184,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13241,7 +13312,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13268,7 +13339,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13402,9 +13473,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13558,7 +13629,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13646,10 +13717,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13887,7 +13958,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13929,9 +14000,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13959,7 +14030,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14007,7 +14078,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14054,21 +14125,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14185,7 +14256,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14295,7 +14366,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14305,11 +14376,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14400,12 +14471,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14519,7 +14590,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14674,11 +14745,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14723,7 +14794,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14921,7 +14992,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14951,7 +15022,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15012,7 +15083,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15024,7 +15095,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15059,7 +15130,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15115,7 +15186,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15278,9 +15349,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15351,7 +15422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15396,7 +15467,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15521,7 +15592,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15868,7 +15939,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16233,10 +16304,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16265,7 +16336,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16525,7 +16596,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16659,7 +16730,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16770,7 +16841,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16800,7 +16871,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16838,7 +16909,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16897,7 +16968,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16919,7 +16990,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16937,7 +17008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17029,7 +17100,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17419,10 +17490,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17430,7 +17501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17833,7 +17904,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18779,7 +18850,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18790,7 +18861,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18810,7 +18881,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18860,7 +18931,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18877,7 +18948,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18923,7 +18994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19104,7 +19175,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19185,7 +19256,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19301,7 +19372,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19347,7 +19418,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19366,7 +19437,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19439,7 +19510,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19572,7 +19643,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19951,7 +20022,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20090,7 +20161,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20165,7 +20236,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20228,7 +20299,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20314,7 +20385,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20354,7 +20425,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20384,7 +20455,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20401,7 +20472,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20451,7 +20522,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20604,7 +20675,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20857,11 +20928,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21344,7 +21415,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21399,7 +21470,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21580,13 +21651,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21673,9 +21744,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21797,9 +21868,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22033,16 +22104,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22288,7 +22359,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22315,7 +22386,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22489,7 +22560,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22714,7 +22785,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22797,7 +22868,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22872,7 +22943,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23097,7 +23168,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23251,7 +23322,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23297,7 +23368,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23350,10 +23421,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23444,13 +23515,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23525,12 +23596,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23672,7 +23743,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23752,7 +23823,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23826,7 +23897,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23876,7 +23947,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23946,7 +24017,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23971,7 +24042,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24072,7 +24143,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24120,18 +24191,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24164,7 +24235,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24324,7 +24395,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24426,7 +24497,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24453,7 +24524,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24483,10 +24554,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24529,7 +24600,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24568,7 +24639,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24630,10 +24701,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24673,7 +24744,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24696,7 +24767,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24705,7 +24776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24728,7 +24799,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24763,7 +24834,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24938,7 +25009,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25030,7 +25101,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25187,7 +25258,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25232,7 +25303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25294,7 +25365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25404,7 +25475,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25421,7 +25492,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25493,7 +25564,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25546,7 +25617,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25649,14 +25720,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25790,5 +25861,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-ppc64.changes b/kernel-ppc64.changes index 195c41775..07fb2258c 100644 --- a/kernel-ppc64.changes +++ b/kernel-ppc64.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-ppc64.spec b/kernel-ppc64.spec index 0b7dbfda1..1fb8baa5a 100644 --- a/kernel-ppc64.spec +++ b/kernel-ppc64.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-ppc64 (Version 2.6.27.3) +# spec file for package kernel-ppc64 (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-ppc64 ppc64 $(case ppc64 in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/ppc64$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-ppc64 Summary: Kernel for ppc64 Systems -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch ppc Provides: kernel-pmac64 kernel-pseries64 kernel-iseries64 @@ -148,8 +148,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -227,12 +228,12 @@ Authors: Tom Gall see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-ppc64-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-ppc64-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -311,7 +312,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -481,20 +488,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-ppc64.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/ppc64 # so that kernel-source + kernel-ppc64 is sufficient for building # modules that have modversions as well. @@ -618,6 +611,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-ppc64.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -725,7 +751,7 @@ Authors: Tom Gall see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -775,7 +801,7 @@ Authors: Tom Gall see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -790,6 +816,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1122,7 +1193,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1172,7 +1243,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1214,7 +1285,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1453,15 +1524,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1573,7 +1644,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2739,7 +2810,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2888,7 +2959,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3248,7 +3319,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3474,7 +3545,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3526,9 +3597,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3594,7 +3665,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4542,7 +4613,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4586,16 +4657,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4724,7 +4795,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4748,7 +4819,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5076,7 +5147,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5296,7 +5367,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5455,7 +5526,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5505,7 +5576,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5565,11 +5636,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5747,7 +5818,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5760,7 +5831,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5865,7 +5936,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -6000,7 +6071,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -6019,7 +6090,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6105,7 +6176,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6121,7 +6192,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6223,9 +6294,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6244,7 +6315,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6273,7 +6344,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6315,7 +6386,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6599,16 +6670,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6633,12 +6704,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6672,12 +6743,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6685,7 +6756,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6718,14 +6789,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6746,7 +6817,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6848,7 +6919,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6857,13 +6928,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7553,7 +7624,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7670,7 +7741,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7969,7 +8040,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7991,7 +8062,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8088,12 +8159,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8239,7 +8310,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8366,7 +8437,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8391,7 +8462,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8606,7 +8677,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8816,7 +8887,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8887,7 +8958,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8966,7 +9037,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -9016,7 +9087,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -9028,7 +9099,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9057,7 +9128,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9071,7 +9142,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9102,13 +9173,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9280,7 +9351,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9583,7 +9654,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9644,7 +9715,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9737,7 +9808,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9968,7 +10039,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10358,7 +10429,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10372,7 +10443,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10394,7 +10465,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10428,7 +10499,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10513,10 +10584,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10804,7 +10875,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10818,7 +10889,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10940,13 +11011,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11281,7 +11352,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11339,7 +11410,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11398,7 +11469,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11492,12 +11563,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11686,10 +11757,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11879,7 +11950,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11903,10 +11974,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11958,7 +12029,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12034,7 +12105,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12090,7 +12161,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12160,7 +12231,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12198,12 +12269,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12561,7 +12632,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12711,10 +12782,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12781,7 +12852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13139,10 +13210,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13267,7 +13338,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13294,7 +13365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13428,9 +13499,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13584,7 +13655,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13672,10 +13743,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13913,7 +13984,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13955,9 +14026,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13985,7 +14056,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14033,7 +14104,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14080,21 +14151,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14211,7 +14282,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14321,7 +14392,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14331,11 +14402,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14426,12 +14497,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14545,7 +14616,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14700,11 +14771,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14749,7 +14820,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14947,7 +15018,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14977,7 +15048,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15038,7 +15109,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15050,7 +15121,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15085,7 +15156,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15141,7 +15212,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15304,9 +15375,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15377,7 +15448,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15422,7 +15493,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15547,7 +15618,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15894,7 +15965,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16259,10 +16330,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16291,7 +16362,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16551,7 +16622,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16685,7 +16756,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16796,7 +16867,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16826,7 +16897,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16864,7 +16935,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16923,7 +16994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16945,7 +17016,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16963,7 +17034,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17055,7 +17126,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17445,10 +17516,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17456,7 +17527,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17859,7 +17930,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18805,7 +18876,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18816,7 +18887,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18836,7 +18907,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18886,7 +18957,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18903,7 +18974,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18949,7 +19020,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19130,7 +19201,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19211,7 +19282,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19327,7 +19398,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19373,7 +19444,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19392,7 +19463,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19465,7 +19536,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19598,7 +19669,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19977,7 +20048,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20116,7 +20187,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20191,7 +20262,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20254,7 +20325,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20340,7 +20411,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20380,7 +20451,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20410,7 +20481,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20427,7 +20498,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20477,7 +20548,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20630,7 +20701,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20883,11 +20954,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21370,7 +21441,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21425,7 +21496,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21606,13 +21677,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21699,9 +21770,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21823,9 +21894,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22059,16 +22130,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22314,7 +22385,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22341,7 +22412,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22515,7 +22586,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22740,7 +22811,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22823,7 +22894,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22898,7 +22969,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23123,7 +23194,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23277,7 +23348,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23323,7 +23394,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23376,10 +23447,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23470,13 +23541,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23551,12 +23622,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23698,7 +23769,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23778,7 +23849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23852,7 +23923,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23902,7 +23973,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23972,7 +24043,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23997,7 +24068,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24098,7 +24169,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24146,18 +24217,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24190,7 +24261,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24350,7 +24421,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24452,7 +24523,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24479,7 +24550,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24509,10 +24580,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24555,7 +24626,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24594,7 +24665,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24656,10 +24727,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24699,7 +24770,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24722,7 +24793,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24731,7 +24802,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24754,7 +24825,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24789,7 +24860,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24964,7 +25035,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25056,7 +25127,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25213,7 +25284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25258,7 +25329,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25320,7 +25391,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25430,7 +25501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25447,7 +25518,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25519,7 +25590,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25572,7 +25643,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25675,14 +25746,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25816,5 +25887,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-ps3.changes b/kernel-ps3.changes index 195c41775..07fb2258c 100644 --- a/kernel-ps3.changes +++ b/kernel-ps3.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-ps3.spec b/kernel-ps3.spec index 62e2aed11..8513cc81b 100644 --- a/kernel-ps3.spec +++ b/kernel-ps3.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-ps3 (Version 2.6.27.3) +# spec file for package kernel-ps3 (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-ps3 ps3 $(case ps3 in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/ps3$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-ps3 Summary: kernel for ps3 bootloader -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch ppc %else @@ -146,8 +146,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -213,12 +214,12 @@ needs to be as small as possible. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-ps3-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-ps3-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -297,7 +298,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -467,20 +474,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-ps3.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/ps3 # so that kernel-source + kernel-ps3 is sufficient for building # modules that have modversions as well. @@ -604,6 +597,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-ps3.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -697,7 +723,7 @@ needs to be as small as possible. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -733,7 +759,7 @@ needs to be as small as possible. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -748,6 +774,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1080,7 +1151,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1130,7 +1201,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1172,7 +1243,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1411,15 +1482,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1531,7 +1602,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2697,7 +2768,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2846,7 +2917,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3206,7 +3277,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3432,7 +3503,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3484,9 +3555,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3552,7 +3623,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4500,7 +4571,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4544,16 +4615,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4682,7 +4753,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4706,7 +4777,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5034,7 +5105,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5254,7 +5325,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5413,7 +5484,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5463,7 +5534,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5523,11 +5594,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5705,7 +5776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5718,7 +5789,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5823,7 +5894,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5958,7 +6029,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5977,7 +6048,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6063,7 +6134,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6079,7 +6150,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6181,9 +6252,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6202,7 +6273,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6231,7 +6302,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6273,7 +6344,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6557,16 +6628,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6591,12 +6662,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6630,12 +6701,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6643,7 +6714,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6676,14 +6747,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6704,7 +6775,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6806,7 +6877,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6815,13 +6886,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7511,7 +7582,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7628,7 +7699,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7927,7 +7998,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7949,7 +8020,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8046,12 +8117,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8197,7 +8268,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8324,7 +8395,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8349,7 +8420,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8564,7 +8635,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8774,7 +8845,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8845,7 +8916,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8924,7 +8995,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8974,7 +9045,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8986,7 +9057,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9015,7 +9086,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9029,7 +9100,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9060,13 +9131,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9238,7 +9309,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9541,7 +9612,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9602,7 +9673,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9695,7 +9766,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9926,7 +9997,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10316,7 +10387,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10330,7 +10401,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10352,7 +10423,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10386,7 +10457,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10471,10 +10542,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10762,7 +10833,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10776,7 +10847,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10898,13 +10969,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11239,7 +11310,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11297,7 +11368,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11356,7 +11427,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11450,12 +11521,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11644,10 +11715,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11837,7 +11908,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11861,10 +11932,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11916,7 +11987,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11992,7 +12063,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12048,7 +12119,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12118,7 +12189,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12156,12 +12227,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12519,7 +12590,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12669,10 +12740,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12739,7 +12810,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13097,10 +13168,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13225,7 +13296,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13252,7 +13323,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13386,9 +13457,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13542,7 +13613,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13630,10 +13701,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13871,7 +13942,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13913,9 +13984,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13943,7 +14014,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13991,7 +14062,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14038,21 +14109,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14169,7 +14240,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14279,7 +14350,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14289,11 +14360,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14384,12 +14455,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14503,7 +14574,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14658,11 +14729,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14707,7 +14778,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14905,7 +14976,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14935,7 +15006,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14996,7 +15067,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15008,7 +15079,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15043,7 +15114,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15099,7 +15170,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15262,9 +15333,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15335,7 +15406,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15380,7 +15451,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15505,7 +15576,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15852,7 +15923,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16217,10 +16288,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16249,7 +16320,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16509,7 +16580,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16643,7 +16714,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16754,7 +16825,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16784,7 +16855,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16822,7 +16893,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16881,7 +16952,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16903,7 +16974,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16921,7 +16992,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17013,7 +17084,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17403,10 +17474,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17414,7 +17485,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17817,7 +17888,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18763,7 +18834,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18774,7 +18845,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18794,7 +18865,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18844,7 +18915,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18861,7 +18932,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18907,7 +18978,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19088,7 +19159,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19169,7 +19240,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19285,7 +19356,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19331,7 +19402,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19350,7 +19421,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19423,7 +19494,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19556,7 +19627,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19935,7 +20006,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20074,7 +20145,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20149,7 +20220,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20212,7 +20283,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20298,7 +20369,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20338,7 +20409,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20368,7 +20439,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20385,7 +20456,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20435,7 +20506,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20588,7 +20659,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20841,11 +20912,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21328,7 +21399,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21383,7 +21454,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21564,13 +21635,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21657,9 +21728,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21781,9 +21852,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22017,16 +22088,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22272,7 +22343,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22299,7 +22370,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22473,7 +22544,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22698,7 +22769,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22781,7 +22852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22856,7 +22927,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23081,7 +23152,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23235,7 +23306,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23281,7 +23352,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23334,10 +23405,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23428,13 +23499,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23509,12 +23580,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23656,7 +23727,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23736,7 +23807,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23810,7 +23881,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23860,7 +23931,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23930,7 +24001,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23955,7 +24026,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24056,7 +24127,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24104,18 +24175,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24148,7 +24219,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24308,7 +24379,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24410,7 +24481,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24437,7 +24508,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24467,10 +24538,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24513,7 +24584,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24552,7 +24623,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24614,10 +24685,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24657,7 +24728,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24680,7 +24751,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24689,7 +24760,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24712,7 +24783,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24747,7 +24818,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24922,7 +24993,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25014,7 +25085,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25171,7 +25242,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25216,7 +25287,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25278,7 +25349,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25388,7 +25459,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25405,7 +25476,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25477,7 +25548,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25530,7 +25601,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25633,14 +25704,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25774,5 +25845,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-rt.changes b/kernel-rt.changes index 195c41775..07fb2258c 100644 --- a/kernel-rt.changes +++ b/kernel-rt.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-rt.spec b/kernel-rt.spec index 74de77ae3..4b23bad1d 100644 --- a/kernel-rt.spec +++ b/kernel-rt.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-rt (Version 2.6.27.3) +# spec file for package kernel-rt (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-rt rt $(case rt in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/rt$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-rt Summary: The Realtime Linux Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -146,8 +146,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -217,12 +218,12 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-rt-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-rt-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -301,7 +302,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -471,20 +478,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-rt.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/rt # so that kernel-source + kernel-rt is sufficient for building # modules that have modversions as well. @@ -608,6 +601,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-rt.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -707,7 +733,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -749,7 +775,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -764,6 +790,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1096,7 +1167,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1146,7 +1217,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1188,7 +1259,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1427,15 +1498,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1547,7 +1618,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2713,7 +2784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2862,7 +2933,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3222,7 +3293,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3448,7 +3519,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3500,9 +3571,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3568,7 +3639,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4516,7 +4587,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4560,16 +4631,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4698,7 +4769,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4722,7 +4793,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5050,7 +5121,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5270,7 +5341,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5429,7 +5500,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5479,7 +5550,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5539,11 +5610,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5721,7 +5792,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5734,7 +5805,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5839,7 +5910,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5974,7 +6045,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5993,7 +6064,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6079,7 +6150,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6095,7 +6166,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6197,9 +6268,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6218,7 +6289,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6247,7 +6318,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6289,7 +6360,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6573,16 +6644,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6607,12 +6678,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6646,12 +6717,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6659,7 +6730,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6692,14 +6763,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6720,7 +6791,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6822,7 +6893,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6831,13 +6902,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7527,7 +7598,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7644,7 +7715,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7943,7 +8014,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7965,7 +8036,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8062,12 +8133,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8213,7 +8284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8340,7 +8411,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8365,7 +8436,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8580,7 +8651,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8790,7 +8861,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8861,7 +8932,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8940,7 +9011,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8990,7 +9061,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -9002,7 +9073,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9031,7 +9102,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9045,7 +9116,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9076,13 +9147,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9254,7 +9325,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9557,7 +9628,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9618,7 +9689,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9711,7 +9782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9942,7 +10013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10332,7 +10403,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10346,7 +10417,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10368,7 +10439,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10402,7 +10473,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10487,10 +10558,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10778,7 +10849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10792,7 +10863,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10914,13 +10985,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11255,7 +11326,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11313,7 +11384,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11372,7 +11443,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11466,12 +11537,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11660,10 +11731,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11853,7 +11924,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11877,10 +11948,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11932,7 +12003,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12008,7 +12079,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12064,7 +12135,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12134,7 +12205,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12172,12 +12243,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12535,7 +12606,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12685,10 +12756,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12755,7 +12826,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13113,10 +13184,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13241,7 +13312,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13268,7 +13339,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13402,9 +13473,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13558,7 +13629,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13646,10 +13717,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13887,7 +13958,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13929,9 +14000,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13959,7 +14030,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14007,7 +14078,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14054,21 +14125,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14185,7 +14256,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14295,7 +14366,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14305,11 +14376,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14400,12 +14471,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14519,7 +14590,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14674,11 +14745,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14723,7 +14794,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14921,7 +14992,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14951,7 +15022,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15012,7 +15083,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15024,7 +15095,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15059,7 +15130,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15115,7 +15186,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15278,9 +15349,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15351,7 +15422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15396,7 +15467,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15521,7 +15592,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15868,7 +15939,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16233,10 +16304,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16265,7 +16336,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16525,7 +16596,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16659,7 +16730,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16770,7 +16841,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16800,7 +16871,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16838,7 +16909,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16897,7 +16968,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16919,7 +16990,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16937,7 +17008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17029,7 +17100,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17419,10 +17490,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17430,7 +17501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17833,7 +17904,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18779,7 +18850,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18790,7 +18861,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18810,7 +18881,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18860,7 +18931,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18877,7 +18948,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18923,7 +18994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19104,7 +19175,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19185,7 +19256,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19301,7 +19372,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19347,7 +19418,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19366,7 +19437,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19439,7 +19510,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19572,7 +19643,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19951,7 +20022,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20090,7 +20161,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20165,7 +20236,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20228,7 +20299,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20314,7 +20385,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20354,7 +20425,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20384,7 +20455,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20401,7 +20472,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20451,7 +20522,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20604,7 +20675,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20857,11 +20928,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21344,7 +21415,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21399,7 +21470,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21580,13 +21651,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21673,9 +21744,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21797,9 +21868,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22033,16 +22104,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22288,7 +22359,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22315,7 +22386,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22489,7 +22560,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22714,7 +22785,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22797,7 +22868,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22872,7 +22943,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23097,7 +23168,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23251,7 +23322,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23297,7 +23368,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23350,10 +23421,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23444,13 +23515,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23525,12 +23596,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23672,7 +23743,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23752,7 +23823,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23826,7 +23897,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23876,7 +23947,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23946,7 +24017,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23971,7 +24042,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24072,7 +24143,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24120,18 +24191,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24164,7 +24235,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24324,7 +24395,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24426,7 +24497,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24453,7 +24524,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24483,10 +24554,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24529,7 +24600,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24568,7 +24639,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24630,10 +24701,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24673,7 +24744,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24696,7 +24767,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24705,7 +24776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24728,7 +24799,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24763,7 +24834,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24938,7 +25009,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25030,7 +25101,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25187,7 +25258,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25232,7 +25303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25294,7 +25365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25404,7 +25475,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25421,7 +25492,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25493,7 +25564,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25546,7 +25617,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25649,14 +25720,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25790,5 +25861,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-rt_debug.changes b/kernel-rt_debug.changes index 195c41775..07fb2258c 100644 --- a/kernel-rt_debug.changes +++ b/kernel-rt_debug.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-rt_debug.spec b/kernel-rt_debug.spec index b508b4aae..aebfd2c65 100644 --- a/kernel-rt_debug.spec +++ b/kernel-rt_debug.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-rt_debug (Version 2.6.27.3) +# spec file for package kernel-rt_debug (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-rt_debug rt_debug $(case rt_debug in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/rt_debug$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-rt_debug Summary: A Debug Version of the Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -146,8 +146,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -212,12 +213,12 @@ Only use this kernel when investigating problems. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-rt_debug-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-rt_debug-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -296,7 +297,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -466,20 +473,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-rt_debug.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/rt_debug # so that kernel-source + kernel-rt_debug is sufficient for building # modules that have modversions as well. @@ -603,6 +596,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-rt_debug.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -697,7 +723,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -734,7 +760,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -749,6 +775,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1081,7 +1152,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1131,7 +1202,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1173,7 +1244,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1412,15 +1483,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1532,7 +1603,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2698,7 +2769,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2847,7 +2918,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3207,7 +3278,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3433,7 +3504,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3485,9 +3556,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3553,7 +3624,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4501,7 +4572,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4545,16 +4616,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4683,7 +4754,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4707,7 +4778,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5035,7 +5106,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5255,7 +5326,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5414,7 +5485,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5464,7 +5535,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5524,11 +5595,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5706,7 +5777,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5719,7 +5790,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5824,7 +5895,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5959,7 +6030,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5978,7 +6049,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6064,7 +6135,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6080,7 +6151,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6182,9 +6253,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6203,7 +6274,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6232,7 +6303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6274,7 +6345,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6558,16 +6629,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6592,12 +6663,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6631,12 +6702,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6644,7 +6715,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6677,14 +6748,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6705,7 +6776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6807,7 +6878,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6816,13 +6887,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7512,7 +7583,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7629,7 +7700,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7928,7 +7999,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7950,7 +8021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8047,12 +8118,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8198,7 +8269,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8325,7 +8396,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8350,7 +8421,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8565,7 +8636,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8775,7 +8846,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8846,7 +8917,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8925,7 +8996,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8975,7 +9046,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8987,7 +9058,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9016,7 +9087,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9030,7 +9101,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9061,13 +9132,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9239,7 +9310,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9542,7 +9613,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9603,7 +9674,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9696,7 +9767,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9927,7 +9998,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10317,7 +10388,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10331,7 +10402,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10353,7 +10424,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10387,7 +10458,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10472,10 +10543,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10763,7 +10834,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10777,7 +10848,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10899,13 +10970,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11240,7 +11311,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11298,7 +11369,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11357,7 +11428,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11451,12 +11522,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11645,10 +11716,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11838,7 +11909,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11862,10 +11933,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11917,7 +11988,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11993,7 +12064,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12049,7 +12120,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12119,7 +12190,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12157,12 +12228,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12520,7 +12591,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12670,10 +12741,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12740,7 +12811,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13098,10 +13169,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13226,7 +13297,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13253,7 +13324,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13387,9 +13458,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13543,7 +13614,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13631,10 +13702,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13872,7 +13943,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13914,9 +13985,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13944,7 +14015,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13992,7 +14063,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14039,21 +14110,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14170,7 +14241,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14280,7 +14351,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14290,11 +14361,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14385,12 +14456,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14504,7 +14575,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14659,11 +14730,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14708,7 +14779,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14906,7 +14977,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14936,7 +15007,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14997,7 +15068,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15009,7 +15080,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15044,7 +15115,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15100,7 +15171,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15263,9 +15334,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15336,7 +15407,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15381,7 +15452,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15506,7 +15577,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15853,7 +15924,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16218,10 +16289,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16250,7 +16321,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16510,7 +16581,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16644,7 +16715,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16755,7 +16826,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16785,7 +16856,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16823,7 +16894,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16882,7 +16953,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16904,7 +16975,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16922,7 +16993,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17014,7 +17085,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17404,10 +17475,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17415,7 +17486,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17818,7 +17889,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18764,7 +18835,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18775,7 +18846,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18795,7 +18866,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18845,7 +18916,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18862,7 +18933,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18908,7 +18979,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19089,7 +19160,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19170,7 +19241,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19286,7 +19357,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19332,7 +19403,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19351,7 +19422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19424,7 +19495,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19557,7 +19628,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19936,7 +20007,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20075,7 +20146,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20150,7 +20221,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20213,7 +20284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20299,7 +20370,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20339,7 +20410,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20369,7 +20440,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20386,7 +20457,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20436,7 +20507,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20589,7 +20660,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20842,11 +20913,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21329,7 +21400,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21384,7 +21455,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21565,13 +21636,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21658,9 +21729,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21782,9 +21853,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22018,16 +22089,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22273,7 +22344,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22300,7 +22371,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22474,7 +22545,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22699,7 +22770,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22782,7 +22853,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22857,7 +22928,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23082,7 +23153,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23236,7 +23307,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23282,7 +23353,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23335,10 +23406,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23429,13 +23500,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23510,12 +23581,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23657,7 +23728,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23737,7 +23808,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23811,7 +23882,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23861,7 +23932,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23931,7 +24002,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23956,7 +24027,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24057,7 +24128,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24105,18 +24176,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24149,7 +24220,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24309,7 +24380,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24411,7 +24482,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24438,7 +24509,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24468,10 +24539,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24514,7 +24585,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24553,7 +24624,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24615,10 +24686,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24658,7 +24729,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24681,7 +24752,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24690,7 +24761,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24713,7 +24784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24748,7 +24819,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24923,7 +24994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25015,7 +25086,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25172,7 +25243,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25217,7 +25288,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25279,7 +25350,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25389,7 +25460,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25406,7 +25477,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25478,7 +25549,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25531,7 +25602,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25634,14 +25705,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25775,5 +25846,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-s390.changes b/kernel-s390.changes index 195c41775..07fb2258c 100644 --- a/kernel-s390.changes +++ b/kernel-s390.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-s390.spec b/kernel-s390.spec index 1a20b30a4..ad7c3e103 100644 --- a/kernel-s390.spec +++ b/kernel-s390.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-s390 (Version 2.6.27.3) +# spec file for package kernel-s390 (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-s390 s390 $(case s390 in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/s390$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-s390 Summary: The Standard Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif Provides: kernel-32bit k_deflt Obsoletes: kernel-32bit k_deflt @@ -143,8 +143,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -208,12 +209,12 @@ The standard kernel. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-s390-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-s390-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -292,7 +293,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -462,20 +469,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-s390.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/s390 # so that kernel-source + kernel-s390 is sufficient for building # modules that have modversions as well. @@ -599,6 +592,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-s390.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -692,7 +718,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -728,7 +754,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -743,6 +769,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1075,7 +1146,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1125,7 +1196,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1167,7 +1238,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1406,15 +1477,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1526,7 +1597,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2692,7 +2763,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2841,7 +2912,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3201,7 +3272,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3427,7 +3498,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3479,9 +3550,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3547,7 +3618,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4495,7 +4566,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4539,16 +4610,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4677,7 +4748,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4701,7 +4772,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5029,7 +5100,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5249,7 +5320,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5408,7 +5479,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5458,7 +5529,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5518,11 +5589,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5700,7 +5771,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5713,7 +5784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5818,7 +5889,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5953,7 +6024,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5972,7 +6043,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6058,7 +6129,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6074,7 +6145,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6176,9 +6247,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6197,7 +6268,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6226,7 +6297,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6268,7 +6339,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6552,16 +6623,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6586,12 +6657,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6625,12 +6696,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6638,7 +6709,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6671,14 +6742,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6699,7 +6770,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6801,7 +6872,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6810,13 +6881,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7506,7 +7577,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7623,7 +7694,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7922,7 +7993,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7944,7 +8015,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8041,12 +8112,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8192,7 +8263,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8319,7 +8390,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8344,7 +8415,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8559,7 +8630,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8769,7 +8840,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8840,7 +8911,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8919,7 +8990,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8969,7 +9040,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8981,7 +9052,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9010,7 +9081,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9024,7 +9095,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9055,13 +9126,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9233,7 +9304,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9536,7 +9607,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9597,7 +9668,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9690,7 +9761,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9921,7 +9992,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10311,7 +10382,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10325,7 +10396,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10347,7 +10418,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10381,7 +10452,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10466,10 +10537,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10757,7 +10828,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10771,7 +10842,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10893,13 +10964,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11234,7 +11305,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11292,7 +11363,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11351,7 +11422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11445,12 +11516,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11639,10 +11710,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11832,7 +11903,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11856,10 +11927,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11911,7 +11982,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11987,7 +12058,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12043,7 +12114,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12113,7 +12184,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12151,12 +12222,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12514,7 +12585,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12664,10 +12735,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12734,7 +12805,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13092,10 +13163,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13220,7 +13291,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13247,7 +13318,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13381,9 +13452,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13537,7 +13608,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13625,10 +13696,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13866,7 +13937,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13908,9 +13979,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13938,7 +14009,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13986,7 +14057,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14033,21 +14104,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14164,7 +14235,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14274,7 +14345,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14284,11 +14355,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14379,12 +14450,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14498,7 +14569,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14653,11 +14724,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14702,7 +14773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14900,7 +14971,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14930,7 +15001,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14991,7 +15062,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15003,7 +15074,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15038,7 +15109,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15094,7 +15165,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15257,9 +15328,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15330,7 +15401,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15375,7 +15446,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15500,7 +15571,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15847,7 +15918,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16212,10 +16283,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16244,7 +16315,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16504,7 +16575,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16638,7 +16709,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16749,7 +16820,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16779,7 +16850,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16817,7 +16888,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16876,7 +16947,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16898,7 +16969,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16916,7 +16987,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17008,7 +17079,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17398,10 +17469,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17409,7 +17480,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17812,7 +17883,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18758,7 +18829,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18769,7 +18840,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18789,7 +18860,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18839,7 +18910,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18856,7 +18927,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18902,7 +18973,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19083,7 +19154,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19164,7 +19235,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19280,7 +19351,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19326,7 +19397,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19345,7 +19416,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19418,7 +19489,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19551,7 +19622,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19930,7 +20001,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20069,7 +20140,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20144,7 +20215,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20207,7 +20278,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20293,7 +20364,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20333,7 +20404,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20363,7 +20434,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20380,7 +20451,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20430,7 +20501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20583,7 +20654,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20836,11 +20907,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21323,7 +21394,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21378,7 +21449,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21559,13 +21630,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21652,9 +21723,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21776,9 +21847,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22012,16 +22083,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22267,7 +22338,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22294,7 +22365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22468,7 +22539,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22693,7 +22764,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22776,7 +22847,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22851,7 +22922,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23076,7 +23147,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23230,7 +23301,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23276,7 +23347,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23329,10 +23400,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23423,13 +23494,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23504,12 +23575,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23651,7 +23722,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23731,7 +23802,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23805,7 +23876,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23855,7 +23926,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23925,7 +23996,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23950,7 +24021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24051,7 +24122,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24099,18 +24170,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24143,7 +24214,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24303,7 +24374,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24405,7 +24476,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24432,7 +24503,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24462,10 +24533,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24508,7 +24579,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24547,7 +24618,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24609,10 +24680,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24652,7 +24723,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24675,7 +24746,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24684,7 +24755,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24707,7 +24778,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24742,7 +24813,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24917,7 +24988,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25009,7 +25080,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25166,7 +25237,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25211,7 +25282,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25273,7 +25344,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25383,7 +25454,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25400,7 +25471,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25472,7 +25543,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25525,7 +25596,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25628,14 +25699,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25769,5 +25840,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-source-rt.changes b/kernel-source-rt.changes index 195c41775..07fb2258c 100644 --- a/kernel-source-rt.changes +++ b/kernel-source-rt.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-source-rt.spec b/kernel-source-rt.spec index 6ab2e42fa..b0bdfda9d 100644 --- a/kernel-source-rt.spec +++ b/kernel-source-rt.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-source-rt (Version 2.6.27.3) +# spec file for package kernel-source-rt (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -29,8 +29,8 @@ Url: http://www.kernel.org/ Name: kernel-source-rt Summary: The Linux Kernel Sources, including the real-time patches -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: Development/Sources AutoReqProv: off @@ -42,7 +42,7 @@ BuildRequires: kernel-dummy %endif ExclusiveArch: %ix86 x86_64 Provides: linux -Provides: kernel-source-rt = 2.6.27.3-%source_rel +Provides: kernel-source-rt = 2.6.27.4-%source_rel %if "kernel-source-rt" == "kernel-source" Provides: linux lx_suse lx_sus22 lx_sus24 Obsoletes: linux lx-gdt lx-hack lx-suse lx1162_1 lx1162_2 lx1212_1 lx1212_2 lx1213_1 lx1213_2 lx121_1 lx121_2 lx126_1 lx126_2 lx129_1 lx129_2 lx_large kernel_headers lx_suse lx_sus22 lx_sus24 @@ -66,8 +66,9 @@ Source37: README.SUSE Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source47: extract-modaliases @@ -120,7 +121,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then @@ -137,7 +138,7 @@ RELEASE=%source_rel while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do RELEASE=${RELEASE#[^0-9]*.} done -KERNELRELEASE=2.6.27.3-$RELEASE +KERNELRELEASE=2.6.27.4-$RELEASE case kernel-source-rt in (*-rt) variant=-rt @@ -164,7 +165,7 @@ chmod -x arch/arm/mach-at91/board-yl-9200.c # executable by accident (fixed in 2 > .patches for patch in $(< .patches); do if ! patch -s -F0 -E -p1 --no-backup-if-mismatch \ - -i %_builddir/kernel-source-rt-2.6.27.3/$patch; then + -i %_builddir/kernel-source-rt-2.6.27.4/$patch; then echo "*** Patch $patch failed ***" exit 1 fi @@ -284,6 +285,51 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ %files -f kernel-source-rt.files %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -616,7 +662,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -666,7 +712,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -708,7 +754,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -947,15 +993,15 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1067,7 +1113,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2233,7 +2279,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2382,7 +2428,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -2742,7 +2788,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -2968,7 +3014,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3020,9 +3066,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3088,7 +3134,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4036,7 +4082,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4080,16 +4126,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4218,7 +4264,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4242,7 +4288,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -4570,7 +4616,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -4790,7 +4836,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -4949,7 +4995,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -4999,7 +5045,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5059,11 +5105,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5241,7 +5287,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5254,7 +5300,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5359,7 +5405,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5494,7 +5540,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5513,7 +5559,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -5599,7 +5645,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -5615,7 +5661,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -5717,9 +5763,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -5738,7 +5784,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -5767,7 +5813,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -5809,7 +5855,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6093,16 +6139,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6127,12 +6173,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6166,12 +6212,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6179,7 +6225,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6212,14 +6258,14 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6240,7 +6286,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6342,7 +6388,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6351,13 +6397,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7047,7 +7093,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7164,7 +7210,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7463,7 +7509,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7485,7 +7531,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -7582,12 +7628,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -7733,7 +7779,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -7860,7 +7906,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -7885,7 +7931,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8100,7 +8146,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8310,7 +8356,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8381,7 +8427,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8460,7 +8506,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8510,7 +8556,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8522,7 +8568,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -8551,7 +8597,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -8565,7 +8611,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -8596,13 +8642,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -8774,7 +8820,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9077,7 +9123,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9138,7 +9184,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9231,7 +9277,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9462,7 +9508,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -9852,7 +9898,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -9866,7 +9912,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -9888,7 +9934,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -9922,7 +9968,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10007,10 +10053,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10298,7 +10344,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10312,7 +10358,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10434,13 +10480,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -10775,7 +10821,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -10833,7 +10879,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -10892,7 +10938,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -10986,12 +11032,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11180,10 +11226,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11373,7 +11419,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11397,10 +11443,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11452,7 +11498,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11528,7 +11574,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -11584,7 +11630,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -11654,7 +11700,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -11692,12 +11738,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12055,7 +12101,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12205,10 +12251,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12275,7 +12321,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -12633,10 +12679,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -12761,7 +12807,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -12788,7 +12834,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -12922,9 +12968,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13078,7 +13124,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13166,10 +13212,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13407,7 +13453,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13449,9 +13495,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13479,7 +13525,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13527,7 +13573,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -13574,21 +13620,21 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -13705,7 +13751,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -13815,7 +13861,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -13825,11 +13871,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -13920,12 +13966,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14039,7 +14085,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14194,11 +14240,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14243,7 +14289,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14441,7 +14487,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14471,7 +14517,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14532,7 +14578,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -14544,7 +14590,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -14579,7 +14625,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -14635,7 +14681,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -14798,9 +14844,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -14871,7 +14917,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -14916,7 +14962,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15041,7 +15087,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15388,7 +15434,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -15753,10 +15799,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -15785,7 +15831,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16045,7 +16091,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16179,7 +16225,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16290,7 +16336,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16320,7 +16366,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16358,7 +16404,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16417,7 +16463,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16439,7 +16485,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16457,7 +16503,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -16549,7 +16595,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -16939,10 +16985,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -16950,7 +16996,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17353,7 +17399,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18299,7 +18345,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18310,7 +18356,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18330,7 +18376,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18380,7 +18426,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18397,7 +18443,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18443,7 +18489,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -18624,7 +18670,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -18705,7 +18751,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -18821,7 +18867,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -18867,7 +18913,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -18886,7 +18932,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -18959,7 +19005,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19092,7 +19138,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19471,7 +19517,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -19610,7 +19656,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -19685,7 +19731,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -19748,7 +19794,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -19834,7 +19880,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -19874,7 +19920,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -19904,7 +19950,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -19921,7 +19967,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -19971,7 +20017,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20124,7 +20170,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20377,11 +20423,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -20864,7 +20910,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -20919,7 +20965,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21100,13 +21146,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21193,9 +21239,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21317,9 +21363,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -21553,16 +21599,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -21808,7 +21854,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -21835,7 +21881,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22009,7 +22055,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22234,7 +22280,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22317,7 +22363,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22392,7 +22438,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -22617,7 +22663,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -22771,7 +22817,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -22817,7 +22863,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -22870,10 +22916,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -22964,13 +23010,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23045,12 +23091,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23192,7 +23238,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23272,7 +23318,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23346,7 +23392,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23396,7 +23442,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23466,7 +23512,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23491,7 +23537,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -23592,7 +23638,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -23640,18 +23686,18 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -23684,7 +23730,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -23844,7 +23890,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -23946,7 +23992,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -23973,7 +24019,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24003,10 +24049,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24049,7 +24095,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24088,7 +24134,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24150,10 +24196,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24193,7 +24239,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24216,7 +24262,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24225,7 +24271,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24248,7 +24294,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24283,7 +24329,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24458,7 +24504,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -24550,7 +24596,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -24707,7 +24753,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -24752,7 +24798,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -24814,7 +24860,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -24924,7 +24970,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -24941,7 +24987,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25013,7 +25059,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25066,7 +25112,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25169,14 +25215,14 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25310,5 +25356,5 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-source.changes b/kernel-source.changes index 195c41775..07fb2258c 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-source.spec b/kernel-source.spec index f4b9ce9da..01b12221e 100644 --- a/kernel-source.spec +++ b/kernel-source.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-source (Version 2.6.27.3) +# spec file for package kernel-source (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -29,8 +29,8 @@ Url: http://www.kernel.org/ Name: kernel-source Summary: The Linux Kernel Sources -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: Development/Sources AutoReqProv: off @@ -42,7 +42,7 @@ BuildRequires: kernel-dummy %endif ExclusiveArch: %ix86 ppc ppc64 s390 s390x ia64 x86_64 Provides: linux -Provides: kernel-source = 2.6.27.3-%source_rel +Provides: kernel-source = 2.6.27.4-%source_rel %if "kernel-source" == "kernel-source" Provides: linux lx_suse lx_sus22 lx_sus24 Obsoletes: linux lx-gdt lx-hack lx-suse lx1162_1 lx1162_2 lx1212_1 lx1212_2 lx1213_1 lx1213_2 lx121_1 lx121_2 lx126_1 lx126_2 lx129_1 lx129_2 lx_large kernel_headers lx_suse lx_sus22 lx_sus24 @@ -66,8 +66,9 @@ Source37: README.SUSE Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source47: extract-modaliases @@ -120,7 +121,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then @@ -137,7 +138,7 @@ RELEASE=%source_rel while [ "$RELEASE" != "${RELEASE#[^0-9]*.}" ]; do RELEASE=${RELEASE#[^0-9]*.} done -KERNELRELEASE=2.6.27.3-$RELEASE +KERNELRELEASE=2.6.27.4-$RELEASE case kernel-source in (*-rt) variant=-rt @@ -164,7 +165,7 @@ chmod -x arch/arm/mach-at91/board-yl-9200.c # executable by accident (fixed in 2 > .patches for patch in $(< .patches); do if ! patch -s -F0 -E -p1 --no-backup-if-mismatch \ - -i %_builddir/kernel-source-2.6.27.3/$patch; then + -i %_builddir/kernel-source-2.6.27.4/$patch; then echo "*** Patch $patch failed ***" exit 1 fi @@ -284,6 +285,51 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ %files -f kernel-source.files %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -616,7 +662,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -666,7 +712,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -708,7 +754,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -947,15 +993,15 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1067,7 +1113,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2233,7 +2279,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2382,7 +2428,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -2742,7 +2788,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -2968,7 +3014,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3020,9 +3066,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3088,7 +3134,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4036,7 +4082,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4080,16 +4126,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4218,7 +4264,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4242,7 +4288,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -4570,7 +4616,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -4790,7 +4836,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -4949,7 +4995,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -4999,7 +5045,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5059,11 +5105,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5241,7 +5287,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5254,7 +5300,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5359,7 +5405,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5494,7 +5540,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5513,7 +5559,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -5599,7 +5645,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -5615,7 +5661,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -5717,9 +5763,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -5738,7 +5784,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -5767,7 +5813,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -5809,7 +5855,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6093,16 +6139,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6127,12 +6173,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6166,12 +6212,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6179,7 +6225,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6212,14 +6258,14 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6240,7 +6286,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6342,7 +6388,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6351,13 +6397,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7047,7 +7093,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7164,7 +7210,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7463,7 +7509,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7485,7 +7531,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -7582,12 +7628,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -7733,7 +7779,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -7860,7 +7906,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -7885,7 +7931,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8100,7 +8146,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8310,7 +8356,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8381,7 +8427,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8460,7 +8506,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8510,7 +8556,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8522,7 +8568,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -8551,7 +8597,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -8565,7 +8611,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -8596,13 +8642,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -8774,7 +8820,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9077,7 +9123,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9138,7 +9184,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9231,7 +9277,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9462,7 +9508,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -9852,7 +9898,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -9866,7 +9912,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -9888,7 +9934,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -9922,7 +9968,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10007,10 +10053,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10298,7 +10344,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10312,7 +10358,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10434,13 +10480,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -10775,7 +10821,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -10833,7 +10879,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -10892,7 +10938,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -10986,12 +11032,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11180,10 +11226,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11373,7 +11419,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11397,10 +11443,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11452,7 +11498,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11528,7 +11574,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -11584,7 +11630,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -11654,7 +11700,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -11692,12 +11738,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12055,7 +12101,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12205,10 +12251,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12275,7 +12321,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -12633,10 +12679,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -12761,7 +12807,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -12788,7 +12834,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -12922,9 +12968,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13078,7 +13124,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13166,10 +13212,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13407,7 +13453,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13449,9 +13495,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13479,7 +13525,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13527,7 +13573,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -13574,21 +13620,21 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -13705,7 +13751,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -13815,7 +13861,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -13825,11 +13871,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -13920,12 +13966,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14039,7 +14085,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14194,11 +14240,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14243,7 +14289,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14441,7 +14487,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14471,7 +14517,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14532,7 +14578,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -14544,7 +14590,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -14579,7 +14625,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -14635,7 +14681,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -14798,9 +14844,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -14871,7 +14917,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -14916,7 +14962,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15041,7 +15087,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15388,7 +15434,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -15753,10 +15799,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -15785,7 +15831,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16045,7 +16091,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16179,7 +16225,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16290,7 +16336,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16320,7 +16366,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16358,7 +16404,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16417,7 +16463,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16439,7 +16485,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16457,7 +16503,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -16549,7 +16595,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -16939,10 +16985,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -16950,7 +16996,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17353,7 +17399,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18299,7 +18345,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18310,7 +18356,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18330,7 +18376,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18380,7 +18426,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18397,7 +18443,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18443,7 +18489,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -18624,7 +18670,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -18705,7 +18751,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -18821,7 +18867,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -18867,7 +18913,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -18886,7 +18932,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -18959,7 +19005,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19092,7 +19138,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19471,7 +19517,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -19610,7 +19656,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -19685,7 +19731,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -19748,7 +19794,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -19834,7 +19880,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -19874,7 +19920,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -19904,7 +19950,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -19921,7 +19967,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -19971,7 +20017,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20124,7 +20170,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20377,11 +20423,11 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -20864,7 +20910,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -20919,7 +20965,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21100,13 +21146,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21193,9 +21239,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21317,9 +21363,9 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -21553,16 +21599,16 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -21808,7 +21854,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -21835,7 +21881,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22009,7 +22055,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22234,7 +22280,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22317,7 +22363,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22392,7 +22438,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -22617,7 +22663,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -22771,7 +22817,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -22817,7 +22863,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -22870,10 +22916,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -22964,13 +23010,13 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23045,12 +23091,12 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23192,7 +23238,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23272,7 +23318,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23346,7 +23392,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23396,7 +23442,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23466,7 +23512,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23491,7 +23537,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -23592,7 +23638,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -23640,18 +23686,18 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -23684,7 +23730,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -23844,7 +23890,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -23946,7 +23992,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -23973,7 +24019,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24003,10 +24049,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24049,7 +24095,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24088,7 +24134,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24150,10 +24196,10 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24193,7 +24239,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24216,7 +24262,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24225,7 +24271,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24248,7 +24294,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24283,7 +24329,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24458,7 +24504,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -24550,7 +24596,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -24707,7 +24753,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -24752,7 +24798,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -24814,7 +24860,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -24924,7 +24970,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -24941,7 +24987,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25013,7 +25059,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25066,7 +25112,7 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25169,14 +25215,14 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25310,5 +25356,5 @@ sed -e "s:@KERNELRELEASE@:$KERNELRELEASE:g" \ - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-syms-rt.changes b/kernel-syms-rt.changes index 195c41775..07fb2258c 100644 --- a/kernel-syms-rt.changes +++ b/kernel-syms-rt.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-syms-rt.spec b/kernel-syms-rt.spec index 4fdf999d9..4bc148a43 100644 --- a/kernel-syms-rt.spec +++ b/kernel-syms-rt.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-syms-rt (Version 2.6.27.3) +# spec file for package kernel-syms-rt (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -28,8 +28,8 @@ Url: http://www.kernel.org/ Name: kernel-syms-rt Summary: Kernel Symbol Versions (modversions) For Real-Time Kernels -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: Development/Sources AutoReqProv: off @@ -49,7 +49,7 @@ BuildRequires: kernel-rt kernel-rt_debug #!BuildIgnore: irqbalance xen #!BuildIgnore: perl-Bootloader mkinitrd Requires: linux -Requires: kernel-source = 2.6.27.3-%source_rel +Requires: kernel-source = 2.6.27.4-%source_rel Source11: arch-symbols Source12: guards Source21: config.conf @@ -74,7 +74,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep echo "Architecture symbol(s):" %symbols @@ -130,6 +130,51 @@ done /boot/symsets-*-*.tar.gz /lib/modules/*/build %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -462,7 +507,7 @@ done Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -512,7 +557,7 @@ done * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -554,7 +599,7 @@ done - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -793,15 +838,15 @@ done - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -913,7 +958,7 @@ done BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2079,7 +2124,7 @@ done * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2228,7 +2273,7 @@ done * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -2588,7 +2633,7 @@ done - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -2814,7 +2859,7 @@ done Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -2866,9 +2911,9 @@ done (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -2934,7 +2979,7 @@ done * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -3882,7 +3927,7 @@ done $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -3926,16 +3971,16 @@ done * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4064,7 +4109,7 @@ done - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4088,7 +4133,7 @@ done - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -4416,7 +4461,7 @@ done initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -4636,7 +4681,7 @@ done - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -4795,7 +4840,7 @@ done Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -4845,7 +4890,7 @@ done - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -4905,11 +4950,11 @@ done * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5087,7 +5132,7 @@ done PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5100,7 +5145,7 @@ done * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5205,7 +5250,7 @@ done - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5340,7 +5385,7 @@ done * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5359,7 +5404,7 @@ done - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -5445,7 +5490,7 @@ done diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -5461,7 +5506,7 @@ done - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -5563,9 +5608,9 @@ done - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -5584,7 +5629,7 @@ done - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -5613,7 +5658,7 @@ done - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -5655,7 +5700,7 @@ done * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -5939,16 +5984,16 @@ done * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -5973,12 +6018,12 @@ done * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6012,12 +6057,12 @@ done * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6025,7 +6070,7 @@ done * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6058,14 +6103,14 @@ done used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6086,7 +6131,7 @@ done - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6188,7 +6233,7 @@ done - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6197,13 +6242,13 @@ done - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -6893,7 +6938,7 @@ done * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7010,7 +7055,7 @@ done - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7309,7 +7354,7 @@ done Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7331,7 +7376,7 @@ done switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -7428,12 +7473,12 @@ done * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -7579,7 +7624,7 @@ done * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -7706,7 +7751,7 @@ done - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -7731,7 +7776,7 @@ done * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -7946,7 +7991,7 @@ done - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8156,7 +8201,7 @@ done fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8227,7 +8272,7 @@ done [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8306,7 +8351,7 @@ done - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8356,7 +8401,7 @@ done - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8368,7 +8413,7 @@ done * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -8397,7 +8442,7 @@ done protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -8411,7 +8456,7 @@ done sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -8442,13 +8487,13 @@ done * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -8620,7 +8665,7 @@ done * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -8923,7 +8968,7 @@ done - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -8984,7 +9029,7 @@ done * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9077,7 +9122,7 @@ done * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9308,7 +9353,7 @@ done * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -9698,7 +9743,7 @@ done for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -9712,7 +9757,7 @@ done * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -9734,7 +9779,7 @@ done - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -9768,7 +9813,7 @@ done - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -9853,10 +9898,10 @@ done * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10144,7 +10189,7 @@ done unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10158,7 +10203,7 @@ done * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10280,13 +10325,13 @@ done - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -10621,7 +10666,7 @@ done remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -10679,7 +10724,7 @@ done * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -10738,7 +10783,7 @@ done - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -10832,12 +10877,12 @@ done * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11026,10 +11071,10 @@ done * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11219,7 +11264,7 @@ done (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11243,10 +11288,10 @@ done * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11298,7 +11343,7 @@ done * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11374,7 +11419,7 @@ done * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -11430,7 +11475,7 @@ done * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -11500,7 +11545,7 @@ done * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -11538,12 +11583,12 @@ done the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -11901,7 +11946,7 @@ done * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12051,10 +12096,10 @@ done - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12121,7 +12166,7 @@ done Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -12479,10 +12524,10 @@ done - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -12607,7 +12652,7 @@ done scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -12634,7 +12679,7 @@ done - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -12768,9 +12813,9 @@ done - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -12924,7 +12969,7 @@ done * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13012,10 +13057,10 @@ done (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13253,7 +13298,7 @@ done * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13295,9 +13340,9 @@ done dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13325,7 +13370,7 @@ done mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13373,7 +13418,7 @@ done huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -13420,21 +13465,21 @@ done - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -13551,7 +13596,7 @@ done - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -13661,7 +13706,7 @@ done * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -13671,11 +13716,11 @@ done - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -13766,12 +13811,12 @@ done rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -13885,7 +13930,7 @@ done * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14040,11 +14085,11 @@ done * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14089,7 +14134,7 @@ done - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14287,7 +14332,7 @@ done * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14317,7 +14362,7 @@ done symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14378,7 +14423,7 @@ done * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -14390,7 +14435,7 @@ done * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -14425,7 +14470,7 @@ done * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -14481,7 +14526,7 @@ done Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -14644,9 +14689,9 @@ done * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -14717,7 +14762,7 @@ done - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -14762,7 +14807,7 @@ done Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -14887,7 +14932,7 @@ done * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15234,7 +15279,7 @@ done * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -15599,10 +15644,10 @@ done * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -15631,7 +15676,7 @@ done * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -15891,7 +15936,7 @@ done - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16025,7 +16070,7 @@ done * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16136,7 +16181,7 @@ done * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16166,7 +16211,7 @@ done - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16204,7 +16249,7 @@ done * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16263,7 +16308,7 @@ done and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16285,7 +16330,7 @@ done * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16303,7 +16348,7 @@ done - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -16395,7 +16440,7 @@ done - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -16785,10 +16830,10 @@ done - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -16796,7 +16841,7 @@ done default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17199,7 +17244,7 @@ done - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18145,7 +18190,7 @@ done option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18156,7 +18201,7 @@ done Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18176,7 +18221,7 @@ done - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18226,7 +18271,7 @@ done Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18243,7 +18288,7 @@ done reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18289,7 +18334,7 @@ done - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -18470,7 +18515,7 @@ done - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -18551,7 +18596,7 @@ done - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -18667,7 +18712,7 @@ done convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -18713,7 +18758,7 @@ done * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -18732,7 +18777,7 @@ done - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -18805,7 +18850,7 @@ done - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -18938,7 +18983,7 @@ done - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19317,7 +19362,7 @@ done ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -19456,7 +19501,7 @@ done - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -19531,7 +19576,7 @@ done * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -19594,7 +19639,7 @@ done - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -19680,7 +19725,7 @@ done * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -19720,7 +19765,7 @@ done at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -19750,7 +19795,7 @@ done - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -19767,7 +19812,7 @@ done * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -19817,7 +19862,7 @@ done TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -19970,7 +20015,7 @@ done - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20223,11 +20268,11 @@ done - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -20710,7 +20755,7 @@ done new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -20765,7 +20810,7 @@ done if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -20946,13 +20991,13 @@ done floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21039,9 +21084,9 @@ done - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21163,9 +21208,9 @@ done in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -21399,16 +21444,16 @@ done * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -21654,7 +21699,7 @@ done * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -21681,7 +21726,7 @@ done * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -21855,7 +21900,7 @@ done * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22080,7 +22125,7 @@ done Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22163,7 +22208,7 @@ done - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22238,7 +22283,7 @@ done * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -22463,7 +22508,7 @@ done * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -22617,7 +22662,7 @@ done - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -22663,7 +22708,7 @@ done - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -22716,10 +22761,10 @@ done * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -22810,13 +22855,13 @@ done * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -22891,12 +22936,12 @@ done - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23038,7 +23083,7 @@ done - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23118,7 +23163,7 @@ done - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23192,7 +23237,7 @@ done - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23242,7 +23287,7 @@ done upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23312,7 +23357,7 @@ done * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23337,7 +23382,7 @@ done - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -23438,7 +23483,7 @@ done - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -23486,18 +23531,18 @@ done * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -23530,7 +23575,7 @@ done * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -23690,7 +23735,7 @@ done - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -23792,7 +23837,7 @@ done hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -23819,7 +23864,7 @@ done created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -23849,10 +23894,10 @@ done * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -23895,7 +23940,7 @@ done * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -23934,7 +23979,7 @@ done - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -23996,10 +24041,10 @@ done - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24039,7 +24084,7 @@ done * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24062,7 +24107,7 @@ done * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24071,7 +24116,7 @@ done - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24094,7 +24139,7 @@ done * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24129,7 +24174,7 @@ done - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24304,7 +24349,7 @@ done input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -24396,7 +24441,7 @@ done for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -24553,7 +24598,7 @@ done - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -24598,7 +24643,7 @@ done iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -24660,7 +24705,7 @@ done - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -24770,7 +24815,7 @@ done autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -24787,7 +24832,7 @@ done - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -24859,7 +24904,7 @@ done - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -24912,7 +24957,7 @@ done define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25015,14 +25060,14 @@ done - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25156,5 +25201,5 @@ done - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-syms.changes b/kernel-syms.changes index 195c41775..07fb2258c 100644 --- a/kernel-syms.changes +++ b/kernel-syms.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-syms.spec b/kernel-syms.spec index becbb6222..b185f8248 100644 --- a/kernel-syms.spec +++ b/kernel-syms.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-syms (Version 2.6.27.3) +# spec file for package kernel-syms (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -28,8 +28,8 @@ Url: http://www.kernel.org/ Name: kernel-syms Summary: Kernel Symbol Versions (modversions) -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: Development/Sources AutoReqProv: off @@ -69,7 +69,7 @@ BuildRequires: kernel-debug kernel-default kernel-trace kernel-xen #!BuildIgnore: irqbalance xen #!BuildIgnore: perl-Bootloader mkinitrd Requires: linux -Requires: kernel-source = 2.6.27.3-%source_rel +Requires: kernel-source = 2.6.27.4-%source_rel Source11: arch-symbols Source12: guards Source21: config.conf @@ -94,7 +94,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep echo "Architecture symbol(s):" %symbols @@ -150,6 +150,51 @@ done /boot/symsets-*-*.tar.gz /lib/modules/*/build %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -482,7 +527,7 @@ done Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -532,7 +577,7 @@ done * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -574,7 +619,7 @@ done - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -813,15 +858,15 @@ done - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -933,7 +978,7 @@ done BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2099,7 +2144,7 @@ done * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2248,7 +2293,7 @@ done * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -2608,7 +2653,7 @@ done - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -2834,7 +2879,7 @@ done Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -2886,9 +2931,9 @@ done (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -2954,7 +2999,7 @@ done * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -3902,7 +3947,7 @@ done $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -3946,16 +3991,16 @@ done * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4084,7 +4129,7 @@ done - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4108,7 +4153,7 @@ done - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -4436,7 +4481,7 @@ done initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -4656,7 +4701,7 @@ done - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -4815,7 +4860,7 @@ done Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -4865,7 +4910,7 @@ done - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -4925,11 +4970,11 @@ done * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5107,7 +5152,7 @@ done PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5120,7 +5165,7 @@ done * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5225,7 +5270,7 @@ done - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5360,7 +5405,7 @@ done * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5379,7 +5424,7 @@ done - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -5465,7 +5510,7 @@ done diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -5481,7 +5526,7 @@ done - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -5583,9 +5628,9 @@ done - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -5604,7 +5649,7 @@ done - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -5633,7 +5678,7 @@ done - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -5675,7 +5720,7 @@ done * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -5959,16 +6004,16 @@ done * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -5993,12 +6038,12 @@ done * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6032,12 +6077,12 @@ done * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6045,7 +6090,7 @@ done * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6078,14 +6123,14 @@ done used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6106,7 +6151,7 @@ done - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6208,7 +6253,7 @@ done - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6217,13 +6262,13 @@ done - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -6913,7 +6958,7 @@ done * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7030,7 +7075,7 @@ done - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7329,7 +7374,7 @@ done Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7351,7 +7396,7 @@ done switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -7448,12 +7493,12 @@ done * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -7599,7 +7644,7 @@ done * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -7726,7 +7771,7 @@ done - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -7751,7 +7796,7 @@ done * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -7966,7 +8011,7 @@ done - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8176,7 +8221,7 @@ done fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8247,7 +8292,7 @@ done [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8326,7 +8371,7 @@ done - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8376,7 +8421,7 @@ done - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8388,7 +8433,7 @@ done * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -8417,7 +8462,7 @@ done protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -8431,7 +8476,7 @@ done sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -8462,13 +8507,13 @@ done * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -8640,7 +8685,7 @@ done * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -8943,7 +8988,7 @@ done - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9004,7 +9049,7 @@ done * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9097,7 +9142,7 @@ done * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9328,7 +9373,7 @@ done * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -9718,7 +9763,7 @@ done for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -9732,7 +9777,7 @@ done * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -9754,7 +9799,7 @@ done - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -9788,7 +9833,7 @@ done - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -9873,10 +9918,10 @@ done * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10164,7 +10209,7 @@ done unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10178,7 +10223,7 @@ done * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10300,13 +10345,13 @@ done - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -10641,7 +10686,7 @@ done remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -10699,7 +10744,7 @@ done * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -10758,7 +10803,7 @@ done - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -10852,12 +10897,12 @@ done * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11046,10 +11091,10 @@ done * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11239,7 +11284,7 @@ done (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11263,10 +11308,10 @@ done * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11318,7 +11363,7 @@ done * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11394,7 +11439,7 @@ done * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -11450,7 +11495,7 @@ done * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -11520,7 +11565,7 @@ done * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -11558,12 +11603,12 @@ done the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -11921,7 +11966,7 @@ done * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12071,10 +12116,10 @@ done - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12141,7 +12186,7 @@ done Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -12499,10 +12544,10 @@ done - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -12627,7 +12672,7 @@ done scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -12654,7 +12699,7 @@ done - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -12788,9 +12833,9 @@ done - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -12944,7 +12989,7 @@ done * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13032,10 +13077,10 @@ done (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13273,7 +13318,7 @@ done * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13315,9 +13360,9 @@ done dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13345,7 +13390,7 @@ done mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13393,7 +13438,7 @@ done huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -13440,21 +13485,21 @@ done - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -13571,7 +13616,7 @@ done - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -13681,7 +13726,7 @@ done * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -13691,11 +13736,11 @@ done - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -13786,12 +13831,12 @@ done rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -13905,7 +13950,7 @@ done * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14060,11 +14105,11 @@ done * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14109,7 +14154,7 @@ done - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14307,7 +14352,7 @@ done * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14337,7 +14382,7 @@ done symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -14398,7 +14443,7 @@ done * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -14410,7 +14455,7 @@ done * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -14445,7 +14490,7 @@ done * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -14501,7 +14546,7 @@ done Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -14664,9 +14709,9 @@ done * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -14737,7 +14782,7 @@ done - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -14782,7 +14827,7 @@ done Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -14907,7 +14952,7 @@ done * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15254,7 +15299,7 @@ done * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -15619,10 +15664,10 @@ done * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -15651,7 +15696,7 @@ done * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -15911,7 +15956,7 @@ done - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16045,7 +16090,7 @@ done * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16156,7 +16201,7 @@ done * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16186,7 +16231,7 @@ done - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16224,7 +16269,7 @@ done * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16283,7 +16328,7 @@ done and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16305,7 +16350,7 @@ done * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16323,7 +16368,7 @@ done - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -16415,7 +16460,7 @@ done - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -16805,10 +16850,10 @@ done - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -16816,7 +16861,7 @@ done default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17219,7 +17264,7 @@ done - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18165,7 +18210,7 @@ done option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18176,7 +18221,7 @@ done Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18196,7 +18241,7 @@ done - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18246,7 +18291,7 @@ done Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18263,7 +18308,7 @@ done reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18309,7 +18354,7 @@ done - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -18490,7 +18535,7 @@ done - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -18571,7 +18616,7 @@ done - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -18687,7 +18732,7 @@ done convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -18733,7 +18778,7 @@ done * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -18752,7 +18797,7 @@ done - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -18825,7 +18870,7 @@ done - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -18958,7 +19003,7 @@ done - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19337,7 +19382,7 @@ done ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -19476,7 +19521,7 @@ done - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -19551,7 +19596,7 @@ done * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -19614,7 +19659,7 @@ done - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -19700,7 +19745,7 @@ done * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -19740,7 +19785,7 @@ done at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -19770,7 +19815,7 @@ done - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -19787,7 +19832,7 @@ done * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -19837,7 +19882,7 @@ done TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -19990,7 +20035,7 @@ done - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20243,11 +20288,11 @@ done - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -20730,7 +20775,7 @@ done new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -20785,7 +20830,7 @@ done if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -20966,13 +21011,13 @@ done floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21059,9 +21104,9 @@ done - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21183,9 +21228,9 @@ done in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -21419,16 +21464,16 @@ done * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -21674,7 +21719,7 @@ done * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -21701,7 +21746,7 @@ done * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -21875,7 +21920,7 @@ done * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22100,7 +22145,7 @@ done Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22183,7 +22228,7 @@ done - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22258,7 +22303,7 @@ done * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -22483,7 +22528,7 @@ done * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -22637,7 +22682,7 @@ done - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -22683,7 +22728,7 @@ done - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -22736,10 +22781,10 @@ done * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -22830,13 +22875,13 @@ done * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -22911,12 +22956,12 @@ done - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23058,7 +23103,7 @@ done - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23138,7 +23183,7 @@ done - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23212,7 +23257,7 @@ done - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23262,7 +23307,7 @@ done upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23332,7 +23377,7 @@ done * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23357,7 +23402,7 @@ done - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -23458,7 +23503,7 @@ done - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -23506,18 +23551,18 @@ done * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -23550,7 +23595,7 @@ done * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -23710,7 +23755,7 @@ done - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -23812,7 +23857,7 @@ done hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -23839,7 +23884,7 @@ done created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -23869,10 +23914,10 @@ done * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -23915,7 +23960,7 @@ done * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -23954,7 +23999,7 @@ done - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24016,10 +24061,10 @@ done - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24059,7 +24104,7 @@ done * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24082,7 +24127,7 @@ done * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24091,7 +24136,7 @@ done - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24114,7 +24159,7 @@ done * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24149,7 +24194,7 @@ done - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24324,7 +24369,7 @@ done input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -24416,7 +24461,7 @@ done for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -24573,7 +24618,7 @@ done - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -24618,7 +24663,7 @@ done iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -24680,7 +24725,7 @@ done - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -24790,7 +24835,7 @@ done autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -24807,7 +24852,7 @@ done - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -24879,7 +24924,7 @@ done - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -24932,7 +24977,7 @@ done define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25035,14 +25080,14 @@ done - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25176,5 +25221,5 @@ done - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-trace.changes b/kernel-trace.changes index 195c41775..07fb2258c 100644 --- a/kernel-trace.changes +++ b/kernel-trace.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-trace.spec b/kernel-trace.spec index 3c7db9376..fcd13a903 100644 --- a/kernel-trace.spec +++ b/kernel-trace.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-trace (Version 2.6.27.3) +# spec file for package kernel-trace (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-trace trace $(case trace in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/trace$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-trace Summary: The Realtime Linux Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -149,8 +149,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -220,12 +221,12 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-trace-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-trace-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -304,7 +305,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -474,20 +481,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-trace.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/trace # so that kernel-source + kernel-trace is sufficient for building # modules that have modversions as well. @@ -611,6 +604,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-trace.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -708,7 +734,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -748,7 +774,7 @@ Authors: see /usr/src/linux/CREDITS for more details. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -763,6 +789,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1095,7 +1166,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1145,7 +1216,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1187,7 +1258,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1426,15 +1497,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1546,7 +1617,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2712,7 +2783,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2861,7 +2932,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3221,7 +3292,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3447,7 +3518,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3499,9 +3570,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3567,7 +3638,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4515,7 +4586,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4559,16 +4630,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4697,7 +4768,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4721,7 +4792,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5049,7 +5120,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5269,7 +5340,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5428,7 +5499,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5478,7 +5549,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5538,11 +5609,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5720,7 +5791,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5733,7 +5804,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5838,7 +5909,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5973,7 +6044,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5992,7 +6063,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6078,7 +6149,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6094,7 +6165,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6196,9 +6267,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6217,7 +6288,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6246,7 +6317,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6288,7 +6359,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6572,16 +6643,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6606,12 +6677,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6645,12 +6716,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6658,7 +6729,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6691,14 +6762,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6719,7 +6790,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6821,7 +6892,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6830,13 +6901,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7526,7 +7597,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7643,7 +7714,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7942,7 +8013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7964,7 +8035,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8061,12 +8132,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8212,7 +8283,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8339,7 +8410,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8364,7 +8435,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8579,7 +8650,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8789,7 +8860,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8860,7 +8931,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8939,7 +9010,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8989,7 +9060,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -9001,7 +9072,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9030,7 +9101,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9044,7 +9115,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9075,13 +9146,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9253,7 +9324,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9556,7 +9627,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9617,7 +9688,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9710,7 +9781,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9941,7 +10012,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10331,7 +10402,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10345,7 +10416,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10367,7 +10438,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10401,7 +10472,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10486,10 +10557,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10777,7 +10848,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10791,7 +10862,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10913,13 +10984,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11254,7 +11325,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11312,7 +11383,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11371,7 +11442,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11465,12 +11536,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11659,10 +11730,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11852,7 +11923,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11876,10 +11947,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11931,7 +12002,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12007,7 +12078,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12063,7 +12134,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12133,7 +12204,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12171,12 +12242,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12534,7 +12605,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12684,10 +12755,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12754,7 +12825,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13112,10 +13183,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13240,7 +13311,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13267,7 +13338,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13401,9 +13472,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13557,7 +13628,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13645,10 +13716,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13886,7 +13957,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13928,9 +13999,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13958,7 +14029,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14006,7 +14077,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14053,21 +14124,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14184,7 +14255,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14294,7 +14365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14304,11 +14375,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14399,12 +14470,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14518,7 +14589,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14673,11 +14744,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14722,7 +14793,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14920,7 +14991,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14950,7 +15021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15011,7 +15082,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15023,7 +15094,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15058,7 +15129,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15114,7 +15185,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15277,9 +15348,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15350,7 +15421,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15395,7 +15466,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15520,7 +15591,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15867,7 +15938,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16232,10 +16303,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16264,7 +16335,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16524,7 +16595,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16658,7 +16729,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16769,7 +16840,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16799,7 +16870,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16837,7 +16908,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16896,7 +16967,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16918,7 +16989,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16936,7 +17007,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17028,7 +17099,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17418,10 +17489,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17429,7 +17500,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17832,7 +17903,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18778,7 +18849,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18789,7 +18860,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18809,7 +18880,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18859,7 +18930,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18876,7 +18947,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18922,7 +18993,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19103,7 +19174,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19184,7 +19255,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19300,7 +19371,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19346,7 +19417,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19365,7 +19436,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19438,7 +19509,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19571,7 +19642,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19950,7 +20021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20089,7 +20160,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20164,7 +20235,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20227,7 +20298,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20313,7 +20384,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20353,7 +20424,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20383,7 +20454,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20400,7 +20471,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20450,7 +20521,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20603,7 +20674,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20856,11 +20927,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21343,7 +21414,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21398,7 +21469,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21579,13 +21650,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21672,9 +21743,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21796,9 +21867,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22032,16 +22103,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22287,7 +22358,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22314,7 +22385,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22488,7 +22559,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22713,7 +22784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22796,7 +22867,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22871,7 +22942,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23096,7 +23167,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23250,7 +23321,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23296,7 +23367,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23349,10 +23420,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23443,13 +23514,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23524,12 +23595,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23671,7 +23742,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23751,7 +23822,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23825,7 +23896,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23875,7 +23946,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23945,7 +24016,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23970,7 +24041,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24071,7 +24142,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24119,18 +24190,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24163,7 +24234,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24323,7 +24394,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24425,7 +24496,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24452,7 +24523,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24482,10 +24553,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24528,7 +24599,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24567,7 +24638,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24629,10 +24700,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24672,7 +24743,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24695,7 +24766,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24704,7 +24775,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24727,7 +24798,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24762,7 +24833,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24937,7 +25008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25029,7 +25100,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25186,7 +25257,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25231,7 +25302,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25293,7 +25364,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25403,7 +25474,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25420,7 +25491,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25492,7 +25563,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25545,7 +25616,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25648,14 +25719,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25789,5 +25860,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes index 195c41775..07fb2258c 100644 --- a/kernel-vanilla.changes +++ b/kernel-vanilla.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec index 290816822..6e86b584c 100644 --- a/kernel-vanilla.spec +++ b/kernel-vanilla.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-vanilla (Version 2.6.27.3) +# spec file for package kernel-vanilla (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-vanilla vanilla $(case vanilla in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/vanilla$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-vanilla Summary: The Standard Kernel - without any SUSE patches -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -165,8 +165,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -230,12 +231,12 @@ The standard kernel - without any SUSE patches -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-vanilla-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-vanilla-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -314,7 +315,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -484,20 +491,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-vanilla.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/vanilla # so that kernel-source + kernel-vanilla is sufficient for building # modules that have modversions as well. @@ -621,6 +614,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-vanilla.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -712,7 +738,7 @@ The standard kernel - without any SUSE patches -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -746,7 +772,7 @@ The standard kernel - without any SUSE patches -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -761,6 +787,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1093,7 +1164,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1143,7 +1214,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1185,7 +1256,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1424,15 +1495,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1544,7 +1615,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2710,7 +2781,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2859,7 +2930,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3219,7 +3290,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3445,7 +3516,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3497,9 +3568,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3565,7 +3636,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4513,7 +4584,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4557,16 +4628,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4695,7 +4766,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4719,7 +4790,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5047,7 +5118,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5267,7 +5338,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5426,7 +5497,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5476,7 +5547,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5536,11 +5607,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5718,7 +5789,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5731,7 +5802,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5836,7 +5907,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5971,7 +6042,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5990,7 +6061,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6076,7 +6147,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6092,7 +6163,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6194,9 +6265,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6215,7 +6286,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6244,7 +6315,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6286,7 +6357,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6570,16 +6641,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6604,12 +6675,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6643,12 +6714,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6656,7 +6727,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6689,14 +6760,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6717,7 +6788,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6819,7 +6890,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6828,13 +6899,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7524,7 +7595,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7641,7 +7712,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7940,7 +8011,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7962,7 +8033,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8059,12 +8130,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8210,7 +8281,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8337,7 +8408,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8362,7 +8433,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8577,7 +8648,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8787,7 +8858,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8858,7 +8929,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8937,7 +9008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8987,7 +9058,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8999,7 +9070,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9028,7 +9099,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9042,7 +9113,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9073,13 +9144,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9251,7 +9322,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9554,7 +9625,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9615,7 +9686,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9708,7 +9779,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9939,7 +10010,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10329,7 +10400,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10343,7 +10414,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10365,7 +10436,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10399,7 +10470,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10484,10 +10555,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10775,7 +10846,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10789,7 +10860,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10911,13 +10982,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11252,7 +11323,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11310,7 +11381,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11369,7 +11440,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11463,12 +11534,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11657,10 +11728,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11850,7 +11921,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11874,10 +11945,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11929,7 +12000,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -12005,7 +12076,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12061,7 +12132,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12131,7 +12202,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12169,12 +12240,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12532,7 +12603,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12682,10 +12753,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12752,7 +12823,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13110,10 +13181,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13238,7 +13309,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13265,7 +13336,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13399,9 +13470,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13555,7 +13626,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13643,10 +13714,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13884,7 +13955,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13926,9 +13997,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13956,7 +14027,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -14004,7 +14075,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14051,21 +14122,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14182,7 +14253,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14292,7 +14363,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14302,11 +14373,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14397,12 +14468,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14516,7 +14587,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14671,11 +14742,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14720,7 +14791,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14918,7 +14989,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14948,7 +15019,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15009,7 +15080,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15021,7 +15092,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15056,7 +15127,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15112,7 +15183,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15275,9 +15346,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15348,7 +15419,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15393,7 +15464,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15518,7 +15589,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15865,7 +15936,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16230,10 +16301,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16262,7 +16333,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16522,7 +16593,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16656,7 +16727,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16767,7 +16838,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16797,7 +16868,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16835,7 +16906,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16894,7 +16965,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16916,7 +16987,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16934,7 +17005,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17026,7 +17097,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17416,10 +17487,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17427,7 +17498,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17830,7 +17901,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18776,7 +18847,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18787,7 +18858,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18807,7 +18878,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18857,7 +18928,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18874,7 +18945,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18920,7 +18991,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19101,7 +19172,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19182,7 +19253,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19298,7 +19369,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19344,7 +19415,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19363,7 +19434,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19436,7 +19507,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19569,7 +19640,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19948,7 +20019,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20087,7 +20158,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20162,7 +20233,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20225,7 +20296,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20311,7 +20382,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20351,7 +20422,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20381,7 +20452,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20398,7 +20469,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20448,7 +20519,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20601,7 +20672,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20854,11 +20925,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21341,7 +21412,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21396,7 +21467,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21577,13 +21648,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21670,9 +21741,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21794,9 +21865,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22030,16 +22101,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22285,7 +22356,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22312,7 +22383,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22486,7 +22557,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22711,7 +22782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22794,7 +22865,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22869,7 +22940,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23094,7 +23165,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23248,7 +23319,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23294,7 +23365,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23347,10 +23418,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23441,13 +23512,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23522,12 +23593,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23669,7 +23740,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23749,7 +23820,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23823,7 +23894,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23873,7 +23944,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23943,7 +24014,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23968,7 +24039,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24069,7 +24140,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24117,18 +24188,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24161,7 +24232,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24321,7 +24392,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24423,7 +24494,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24450,7 +24521,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24480,10 +24551,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24526,7 +24597,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24565,7 +24636,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24627,10 +24698,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24670,7 +24741,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24693,7 +24764,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24702,7 +24773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24725,7 +24796,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24760,7 +24831,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24935,7 +25006,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25027,7 +25098,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25184,7 +25255,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25229,7 +25300,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25291,7 +25362,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25401,7 +25472,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25418,7 +25489,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25490,7 +25561,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25543,7 +25614,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25646,14 +25717,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25787,5 +25858,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/kernel-xen.changes b/kernel-xen.changes index 195c41775..07fb2258c 100644 --- a/kernel-xen.changes +++ b/kernel-xen.changes @@ -1,3 +1,76 @@ +------------------------------------------------------------------- +Mon Oct 27 14:13:04 CET 2008 - trenn@suse.de + +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). + +------------------------------------------------------------------- +Mon Oct 27 11:46:43 CET 2008 - tj@suse.de + +Refresh the govault patch. + +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). + +------------------------------------------------------------------- +Sun Oct 26 18:48:09 CET 2008 - bwalle@suse.de + +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). + +------------------------------------------------------------------- +Sun Oct 26 06:58:29 CET 2008 - gregkh@suse.de + +- refresh patches to apply cleanly and properly. + +------------------------------------------------------------------- +Sun Oct 26 06:44:24 CET 2008 - gregkh@suse.de + +- Update to 2.6.27.4 + +------------------------------------------------------------------- +Sat Oct 25 20:47:27 CEST 2008 - agruen@suse.de + +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. + +------------------------------------------------------------------- +Sat Oct 25 18:36:05 CEST 2008 - jjolly@suse.de + +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) + +------------------------------------------------------------------- +Sat Oct 25 11:51:28 CEST 2008 - neilb@suse.de + +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). + +------------------------------------------------------------------- +Fri Oct 24 23:57:11 CEST 2008 - gregkh@suse.de + +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works + ------------------------------------------------------------------- Fri Oct 24 17:40:25 CEST 2008 - jack@suse.cz @@ -619,7 +692,7 @@ Fri Oct 17 01:22:08 CEST 2008 - mfasheh@suse.com - patches.suse/ocfs2-Add-POSIX-ACL-support-in-ocfs2.patch ------------------------------------------------------------------- -Thu Oct 16 23:57:16 CEST 2008 - mfasheh@suse.com +Fri Oct 17 00:57:16 CEST 2008 - mfasheh@suse.com - ocfs2 fixes / updates from 2.6.28 merge window - patches.suse/ocfs2-xattr.c-Fix-a-bug-when-inserting-xattr.patch diff --git a/kernel-xen.spec b/kernel-xen.spec index 6eba1af23..79d396bff 100644 --- a/kernel-xen.spec +++ b/kernel-xen.spec @@ -1,5 +1,5 @@ # -# spec file for package kernel-xen (Version 2.6.27.3) +# spec file for package kernel-xen (Version 2.6.27.4) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -42,7 +42,7 @@ %if %{build_flavor} == "vanilla" %define build_vanilla 1 %endif -%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,make-symsets,modversions,kabi-checks}) +%(chmod +x %_sourcedir/{arch-symbols,guards,config-subst,check-for-config-changes,check-supported-list,built-in-where,find-provides,list-exported-symbols,split-into-symsets,modversions,kabi-checks}) %define symbols %(set -- kernel-xen xen $(case xen in (rt|rt_*) echo RT ;; esac) $(%_sourcedir/arch-symbols %_target_cpu) $([ -e %_sourcedir/extra-symbols ] && cat %_sourcedir/extra-symbols) ; echo $*) %define subarch_flavor %(%_sourcedir/guards %symbols < %_sourcedir/config.conf | grep '/xen$') # Define some CONFIG variables as rpm macros as well. (rpm cannot handle @@ -57,8 +57,8 @@ Name: kernel-xen Summary: The Xen Kernel -Version: 2.6.27.3 -Release: 2 +Version: 2.6.27.4 +Release: 1 License: GPL v2 only Group: System/Kernel Url: http://www.kernel.org/ @@ -97,8 +97,8 @@ BuildRequires: dtc %endif %if %build_xen %ifarch %ix86 -Provides: kernel-xenpae = 2.6.27.3 -Obsoletes: kernel-xenpae <= 2.6.27.3 +Provides: kernel-xenpae = 2.6.27.4 +Obsoletes: kernel-xenpae <= 2.6.27.4 %endif #!BuildIgnore: xen %endif @@ -123,7 +123,7 @@ Conflicts: libc.so.6()(64bit) %if %build_um #Conflicts: kernel %else -Provides: kernel = 2.6.27.3-%source_rel +Provides: kernel = 2.6.27.4-%source_rel %endif %ifarch %ix86 %else @@ -146,8 +146,9 @@ Source34: check-supported-list Source38: kabi-checks Source40: build-source-timestamp Source41: built-in-where -Source42: make-symsets -Source43: find-provides +Source42: list-exported-symbols +Source43: split-into-symsets +Source44: find-provides Source45: module-renames Source46: modversions Source100: config.tar.bz2 @@ -214,12 +215,12 @@ unprivileged ("xenU") kernel. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %prep if ! [ -e %_sourcedir/linux-2.6.27.tar.bz2 ]; then - echo "The kernel-xen-2.6.27.3.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-2.6.27.3.src.rpm." + echo "The kernel-xen-2.6.27.4.nosrc.rpm package does not contain the" \ + "complete sources. Please install kernel-source-2.6.27.4.src.rpm." exit 1 fi echo "Architecture symbol(s):" %symbols @@ -298,7 +299,7 @@ MAKE_ARGS="ARCH=$subarch" EOF %endif cat >> ../.rpm-defs <> ../.rpm-defs < Module.symvers.split +mv Module.symvers.split Module.symvers gzip -c9 < Module.symvers > %buildroot/boot/symvers-$KERNELRELEASE.gz if [ $CONFIG_MODULES = y ]; then make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot @@ -468,20 +475,6 @@ if [ $CONFIG_MODULES = y ]; then %endif echo "Consistency check error: please update supported.conf." fi - # Preserve exports from previous kernels when possible. - old_symsets=%my_builddir/kabi/$SUBARCH/symsets-xen.tar.gz - [ -e $old_symsets ] || old_symsets= - # Group the exported symbols listed in symvers.gz by directory, and - # create a database of sets. - { awk '$3 != "vmlinux" { print }' Module.symvers - # Find out in which built-in.o files the exported symbols that ended - # up in vmlinux were defined. - awk '$3 == "vmlinux" { print }' Module.symvers \ - | %_sourcedir/built-in-where - } | %_sourcedir/make-symsets \ - %buildroot/boot/symsets-$KERNELRELEASE.tar.gz \ - $old_symsets || - [ -n "$ignore_kabi_changes" -o %tolerate_kabi_changes -ge 8 ] # Also put the resulting file in $obj_dir/$SUBARCH/xen # so that kernel-source + kernel-xen is sufficient for building # modules that have modversions as well. @@ -605,6 +598,39 @@ if [ $CONFIG_MODULES = y ]; then find lib/modules/$KERNELRELEASE -type f -name '*.ko' -printf '/%%p\n' ) > %my_builddir/base-modules %endif + exported_by_modules() { + local module + while read module; do + %_sourcedir/list-exported-symbols $RPM_BUILD_ROOT$module + done + } + mkdir %my_builddir/{base,main,extra} + ( awk '$3 == "vmlinux" || $3 ~ /\/built-in$/ { print }' Module.symvers + exported_by_modules < %my_builddir/base-modules + ) | %_sourcedir/split-into-symsets %my_builddir/base +%if %split_packages + exported_by_modules < %my_builddir/main-modules \ + | %_sourcedir/split-into-symsets %my_builddir/main + exported_by_modules < %my_builddir/unsupported-modules \ + | %_sourcedir/split-into-symsets %my_builddir/extra +%endif + # Notes: + # - We rely on list-exported-symbols to correctly extract all exported + # symbols from modules; Module.symvers is disregarded for that. + # - We recompute the symsets in find-provides. Take care to keep the + # algorithm the same in both places. + ## Preserve exports from previous kernels when possible. + #old_symsets=%my_builddir/kabi/$SUBARCH/symsets-xen.tar.gz + #[ -e $old_symsets ] || old_symsets= + # FIXME: implement + symsets=%my_builddir/symsets-$KERNELRELEASE + mkdir $symsets + find %my_builddir/{base,main,extra} -type f \ + | xargs --replace='{}' cp '{}' $symsets/ + tar c -C ${symsets%/*} ${symsets##*/} \ + | gzip -9 \ + > %buildroot/boot/symsets-$KERNELRELEASE.tar.gz + # FIXME: check for abi changes # Set up some module aliases install -d -m 755 %buildroot/etc/modprobe.d/ install -m 644 %_sourcedir/module-renames %buildroot/etc/modprobe.d/ @@ -701,7 +727,7 @@ This package contains only the base modules, required in all installs. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun base -f preun-base.sh @@ -740,7 +766,7 @@ This package contains additional modules not supported by Novell. -Source Timestamp: 2008-10-24 17:40:47 +0200 +Source Timestamp: 2008-10-27 19:53:11 +0100 %preun extra -f preun-extra.sh @@ -755,6 +781,51 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 %defattr(-, root, root) %endif %changelog +* Mon Oct 27 2008 trenn@suse.de +- patches.arch/x86_uv_early_detect.patch: Delete hacks that were + necessary while waiting for x2apic code. (bnc#429984). +* Mon Oct 27 2008 tj@suse.de + Refresh the govault patch. +- patches.drivers/libata-add-waits-for-govault: libata: add + waits for GoVault (bnc#246451). +* Sun Oct 26 2008 bwalle@suse.de +- patches.fixes/kdb-oops-panic.diff: + Fix NULL pointer dereference when regs == NULL (bnc#439007). +- patches.fixes/hpwdt-kdump.diff: + Fix kdump when using hpwdt (bnc#436786). +* Sun Oct 26 2008 gregkh@suse.de +- refresh patches to apply cleanly and properly. +* Sun Oct 26 2008 gregkh@suse.de +- Update to 2.6.27.4 +* Sat Oct 25 2008 agruen@suse.de +- Fix the dependencies between the split kernel packages and KMPs + (FATE 303631). +- Fix for kernel paclages which are not split. +- rpm/kernel-source.spec.in: Update list of scripts to include. +* Sat Oct 25 2008 jjolly@suse.de +- patches.arch/s390-02-02-smp-sysdev.patch: kernel: sysdev class + file creation (bnc#434333) +- patches.arch/s390-02-03-zfcp.patch: Fix zfcp problems that have + been found (bnc#434333) +- patches.arch/s390-02-04-qeth-mac.patch: qeth: use firmware + MAC-address for layer2 hsi-devices (bnc#434333) +- patches.arch/s390-02-05-qeth-recovery.patch: qeth: qeth recovery + fails (bnc#434333) +- patches.arch/s390-02-06-qeth-offset.patch: qeth: fix offset error + in non prealloc header path (bnc#434333,LTC#48840) +- patches.arch/s390-02-07-qeth-ipv6check.patch: qeth: remove + unnecessary support ckeck in sysfs route6 (bnc#434333) +- patches.arch/s390-02-08-qeth-panic.patch: qeth: avoid + skb_under_panic for malformatted inbound data (bnc#434333) +- patches.arch/s390-02-09-tape-lock.patch: tape device driver: + improve locking (bnc#434333) +* Sat Oct 25 2008 neilb@suse.de +- patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch: + touch_mnt_namespace when the mount flags change (FATE#304218). +* Sat Oct 25 2008 gregkh@suse.de +- Updated to 2.6.27.4-rc3: + - fixed ath5k suspend/resume regression + - fixed pvrusb2 so it actually works * Fri Oct 24 2008 jack@suse.cz - patches.suse/ocfs2-Implementation-of-local-and-global-quota-file.patch: ocfs2: Implementation of local and global quota file handling @@ -1087,7 +1158,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Ack: - patches.rt/genirq-soft-resend.patch: Linux-RT 2.6.27-RT x86: activate HARDIRQS_SW_RESEND. -* Tue Oct 21 2008 gregkh@suse.de +* Mon Oct 20 2008 gregkh@suse.de - patches.arch/x2APIC_PATCH_x86-mach_apicdef.h-need-to-include-before-smp.h.patch: x86: mach_apicdef.h need to include before smp.h. fixes build error on i386 pae kernels. @@ -1137,7 +1208,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Oct 18 2008 tonyj@suse.de - patches.rt/fix-preempt-none.patch: Fix preempt-none build errors -* Sat Oct 18 2008 jeffm@suse.de +* Fri Oct 17 2008 jeffm@suse.de - patches.suse/SoN-20-netvm-reserve-inet.patch-fix: SoN: Fix initialization of ipv4_route_lock (bnc#435994). * Fri Oct 17 2008 kkeil@suse.de @@ -1179,7 +1250,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/ocfs2-fix-build-error.patch * Fri Oct 17 2008 mfasheh@suse.com - ocfs2 dynamic local alloc patches -* Fri Oct 17 2008 jslaby@suse.de +* Thu Oct 16 2008 jslaby@suse.de - patches.drivers/tpm-bcm0102-workaround.patch: tpm: work around bug in Broadcom BCM0102 chipset (bnc#425747 FATE304221). - patches.drivers/tpm-correct-timeouts.patch: tpm: correct tpm @@ -1418,15 +1489,15 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated to 2.6.27-rc9, but still disabled: - patches.suse/silent-stack-overflow - patches.xen/xen3-silent-stack-overflow -* Fri Oct 10 2008 gregkh@suse.de +* Thu Oct 09 2008 gregkh@suse.de - supported.conf: thermal_sys, not thermal_sysfs. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.rt/hrtimers-stuck-in-waitqueue.patch: Updated against 2.6.27-rc9. -* Fri Oct 10 2008 jdelvare@suse.de +* Thu Oct 09 2008 jdelvare@suse.de - supported.conf: Fix the name of the thermal_sys module. - config/x86_64/rt_timing: THERMAL_HWMON is a boolean. -* Fri Oct 10 2008 jeffm@suse.de +* Thu Oct 09 2008 jeffm@suse.de - patches.suse/netfilter-ipv4options: Updated to 2.6.27-rc9, enabled, and marked supported (bnc#131728 - FATE#182). * Thu Oct 09 2008 jeffm@suse.de @@ -1538,7 +1609,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 BLKIF_OP_PACKET (fate#300964). - patches.xen/xen-blkfront-cdrom: implement forwarding of CD-ROM specific commands (fate#300964). -* Thu Oct 09 2008 gregkh@suse.de +* Wed Oct 08 2008 gregkh@suse.de - supported.conf: major update. Lots of new drivers added as this file hadn't been updated for a lot of kernel revisions. This should close out a lot of bugs about "unsupported" modules, @@ -2704,7 +2775,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 30 2008 agruen@suse.de - kernel-vanilla and kernel-p3 are not split into main, -base, and -extra packages. Fix the bogus dependencies on those packages. -* Tue Sep 30 2008 jkosina@suse.de +* Mon Sep 29 2008 jkosina@suse.de - disabled the following Swap-over-NFS patches, as they cause panic in IPv6 code: - patches.suse/SoN-01-mm-gfp-to-alloc_flags.patch: mm: @@ -2853,7 +2924,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Sep 27 2008 jeffm@suse.de - patches.xen/xen-e1000e_Export_set_memory_ro-rw: Export set_memory_ro() and set_memory_rw() calls for xen. (bnc#425480). -* Sat Sep 27 2008 kkeil@suse.de +* Fri Sep 26 2008 kkeil@suse.de - patches.suse/e1000e_mmap_range_chk:check ranges in pci_mmap * updated version with better reporting (bnc#425480) * Fri Sep 26 2008 kkeil@suse.de @@ -3213,7 +3284,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/ia64-kdump_proc_iomem.diff: IA64: assign a distinguishable label to uncached memory in /proc/iomem (to fix MCA on kdump boot). -* Fri Sep 12 2008 jack@suse.cz +* Thu Sep 11 2008 jack@suse.cz Latest ext4 fixes from ext4 patch queue: - patches.fixes/ext4-Add-inode-to-journal-handle-after-block-alloca.patch: ext4: Don't add the inode to journal handle until after the @@ -3439,7 +3510,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory map for ia64/discontmem for kdump. * Mon Sep 01 2008 olh@suse.de - Updated to 2.6.27-rc5-git2 -* Sat Aug 30 2008 jeffm@suse.de +* Fri Aug 29 2008 jeffm@suse.de - Updated to 2.6.27-rc5. - Eliminated 2 patches. - KDB has an incompatible change on x86_64, so kernel-debug @@ -3491,9 +3562,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (i386). * Tue Aug 26 2008 jeffm@suse.de - Disabled patches.kernel.org/ia64-asm-nr-irqs -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.fixes/pseries-compile-fix: pseries: compile fix. -* Tue Aug 26 2008 jeffm@suse.de +* Mon Aug 25 2008 jeffm@suse.de - patches.kernel.org/musb-powerpc-conflict: musb: compile fix for powerpc. * Mon Aug 25 2008 jeffm@suse.de @@ -3559,7 +3630,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 15 2008 jeffm@suse.de - patches.kernel.org/ath9k-workaround-gcc-ICE-again-on-powerpc: ath9k: work around gcc ICE again. -* Fri Aug 15 2008 jeffm@suse.de +* Thu Aug 14 2008 jeffm@suse.de - patches.suse/novfs-gregorian-day-fix: novfs: Fix GregorianDay conflict. * Thu Aug 14 2008 jeffm@suse.de @@ -4507,7 +4578,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 $flavor/Makefile (bnc#409982). * Fri Jul 18 2008 hare@suse.de - Update config files for S/390. -* Fri Jul 18 2008 bwalle@suse.de +* Thu Jul 17 2008 bwalle@suse.de - patches.fixes/show-OSRELEASE-in-VMCOREINFO.diff: kdump: Report actual value of VMCOREINFO_OSRELEASE in VMCOREINFO * Thu Jul 17 2008 jeffm@suse.de @@ -4551,16 +4622,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jul 10 2008 jeffm@suse.de - patches.kernel.org/fsl-diu-fb-compile-fix: fsl-diu-fb: compile fix. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.suse/kdb-common: Removed obsolete file_lock_operations printing. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: Upstreamed with -git5. -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - patches.fixes/reiserfs-discard-xattr-prealloc: reiserfs: discard prealloc in reiserfs_delete_inode (bnc#389656). -* Thu Jul 10 2008 jeffm@suse.de +* Wed Jul 09 2008 jeffm@suse.de - Updated to 2.6.26-rc9-git5. - Eliminated 2 patches. * Wed Jul 09 2008 jbohac@suse.cz @@ -4689,7 +4760,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/sched-cpupri-priocount.patch: sched: fix cpupri priocount. - patches.rt/ftrace-hotplug-fix.patch: ftrace: cpu hotplug fix. -* Thu Jun 12 2008 agruen@suse.de +* Wed Jun 11 2008 agruen@suse.de - rpm/make-symsets: update to the latest version which will ignore symset changes if the symset includes a symbol marked to be ignored. @@ -4713,7 +4784,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/mptbase-vmware-fix: Delete as it's not needed anymore * Tue Jun 10 2008 gregkh@suse.de - refresh patches to apply cleanly -* Tue Jun 10 2008 gregkh@suse.de +* Mon Jun 09 2008 gregkh@suse.de - Update to 2.6.25.6 - loads of bugfixes - remove the following patches that were already included in this release: @@ -5041,7 +5112,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 initramfs DSDT override support. -> Did not make it into 2.6.25 again... - Update config files. -* Mon May 19 2008 agruen@suse.de +* Sun May 18 2008 agruen@suse.de - Update the nfs4acl patches (and split them out more explicitly). Export all new symbols als GPL only. - patches.apparmor/parent-permission.diff: Rediff. @@ -5261,7 +5332,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.25.1: - fixes CVE-2008-1375 and CVE-2008-1675 - lots of other minor bugfixes -* Fri May 02 2008 agruen@suse.de +* Thu May 01 2008 agruen@suse.de - Provide "kernel(flavor:symset) = version" instead of "kernel(symset) = version". This disambiguates the case where several kernel flavors end up with the same modver checksums @@ -5420,7 +5491,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Delete. - patches.rt/mips-remove-duplicate-kconfig.patch: Delete. - patches.rt/mips-remove-finish-arch-switch.patch: Delete. -* Sat Apr 26 2008 carnold@novell.com +* Fri Apr 25 2008 carnold@novell.com - rpm/kernel-binary.spec.in: kernel-xen does not obsolete/provide kernel-xenpae (bnc#382309) * Fri Apr 25 2008 olh@suse.de @@ -5470,7 +5541,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Code cleanup * Sat Apr 19 2008 jjohanse@suse.de - Update fsetattr.diff to EXPORT_SYMBOL_GPL(fnotify_change) -* Sat Apr 19 2008 jjohanse@suse.de +* Fri Apr 18 2008 jjohanse@suse.de - patches.apparmor/__d_path-keep-connected.diff: Fix __d_path to allow for old and new behavior bnc#380763. * Thu Apr 17 2008 gregkh@suse.de @@ -5530,11 +5601,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Mar 23 2008 teheo@suse.de - patches.drivers/libata-improve-hpa-error-handling: libata: improve HPA error handling (365534). -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - fix up some EXPORT_SYMBOL() markings to be EXPORT_SYMBOL_GPL() as the code is not upstream and we aren't allowed to add non-GPL exports to our kernel tree. -* Fri Mar 21 2008 gregkh@suse.de +* Thu Mar 20 2008 gregkh@suse.de - update to 2.6.25-rc6-git5 - refresh patches to apply cleanly * Thu Mar 20 2008 gregkh@suse.de @@ -5712,7 +5783,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 PCI device ID list still not complete and let's have the same crap as mainline for now. It would be better to fix the PCI ID lists (#302327) -* Mon Mar 03 2008 olh@suse.de +* Sun Mar 02 2008 olh@suse.de - add patches.fixes/ibmvstgt-fixes.patch fix oops in ibmvstgt init function * Fri Feb 29 2008 olh@suse.de @@ -5725,7 +5796,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 28 2008 olh@suse.de - update patches.kernel.org/fixed-phy-select add dependency on libphy=y -* Thu Feb 28 2008 jdelvare@suse.de +* Wed Feb 27 2008 jdelvare@suse.de - patches.fixes/acpi-fix-double-log-level.patch: ACPI: Fix a duplicate log level. * Wed Feb 27 2008 trenn@suse.de @@ -5830,7 +5901,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rt/0044-sched-remove-some-old-cpuset-logic.patch: Delete. - Remove scheduler patches already upstream in 2.6.25-rc1 -* Sun Feb 24 2008 jeffm@suse.de +* Sat Feb 23 2008 jeffm@suse.de - patches.kernel.org/libertas-section-conflict: libertas: fix section conflict. * Sat Feb 23 2008 jeffm@suse.de @@ -5965,7 +6036,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 14 2008 teheo@suse.de - patches.drivers/libata-quirk_amd_ide_mode: PCI: modify SATA IDE mode quirk (345124). -* Thu Feb 14 2008 jeffm@suse.de +* Wed Feb 13 2008 jeffm@suse.de - patches.suse/ocfs2-03-split-disk-heartbeat-out.diff: Fixed section conflict. * Wed Feb 13 2008 jeffm@suse.de @@ -5984,7 +6055,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/libata-force-cable-type: Delete. - patches.drivers/libata-implement-force-parameter: libata: implement libata.force module parameter (337610). -* Sat Feb 09 2008 gregkh@suse.de +* Fri Feb 08 2008 gregkh@suse.de - Update to 2.6.24.1 - fixes CVE-2008-0007, CVE-2008-0009, CVE-2008-0010 - lots of USB device ids updated @@ -6070,7 +6141,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 diffstat (except for the xen patches, they were left alone...) * Fri Jan 25 2008 gregkh@suse.de - Update to 2.6.24 -* Fri Jan 25 2008 olh@suse.de +* Thu Jan 24 2008 olh@suse.de - always skip kernel-ps3 in suse_kernel_module_package rpm macro * Thu Jan 24 2008 sdietrich@suse.de - Update config files: set SYSFS_DEPRECATED for reverse @@ -6086,7 +6157,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add entry for ps3 defconfig in config.conf - add support for kernels without loadable modules to rpm/kernel-binary.spec.in - include ps3 target in scripts/tar-up_and_run_mbuild.sh -* Tue Jan 22 2008 sdietrich@suse.de +* Mon Jan 21 2008 sdietrich@suse.de - Update config files (RT) * Mon Jan 21 2008 sdietrich@suse.de - Linux-RT 2.6.24-rc8-rt1 @@ -6188,9 +6259,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update to 2.6.24-rc6-git11. * Wed Jan 02 2008 jblunck@suse.de - rpm/kernel-binary.spec.in: Copy debug sources to a proper location. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - Update to 2.6.24-rc6-git7. -* Wed Jan 02 2008 jeffm@suse.de +* Tue Jan 01 2008 jeffm@suse.de - scripts/run_oldconfig.sh: Removed RT symbol from EXTRA_SYMBOLS. We add it manually when building the patch list. This allows the script to work with the RT kernel without having to remove @@ -6209,7 +6280,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/igb-2007-12-11: Add igb (PCI-Express 82575 Gigabit Ethernet driver) - Update config files: Enable CONFIG_IGB for all flavours. -* Tue Dec 18 2007 jeffm@suse.de +* Mon Dec 17 2007 jeffm@suse.de - Update to 2.6.24-rc5-git4. * Mon Dec 17 2007 neilb@suse.de - patches.fixes/nfs-unmount-leak.patch: NFSv2/v3: Fix a memory @@ -6238,7 +6309,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Update Xen patches to 2.6.24-rc4 and Linux c/s 355. - Update config files. - config.conf: Re-enable Xen flavors. -* Wed Dec 12 2007 jeffm@suse.de +* Tue Dec 11 2007 jeffm@suse.de - Update to 2.6.24-rc5. * Tue Dec 11 2007 bwalle@suse.de - rpm/kernel-binary.spec.in: Let the kernel build fail when @@ -6280,7 +6351,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 05 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc4-git1: kernel: Update to 2.6.24-rc4-git1. -* Wed Dec 05 2007 jeffm@suse.de +* Tue Dec 04 2007 jeffm@suse.de - patches.kernel.org/gcc43-workaround.diff: put inside loop and fixed "r+" to "+r." Works now. * Tue Dec 04 2007 jeffm@suse.de @@ -6564,16 +6635,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 08 2007 bwalle@suse.de - patches.suse/squashfs.patch.fixup: Fix build on x86-64 with CONFIG_SMP unset. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/setuid-dumpable-wrongdir: added trans_table entry to avoid warning. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/supported-flag: Removed sysctl binary number, it's not used or officially reserved. -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.fixes/sysctl-fix-token-ring-procname: sysctl: fix token-ring procname -* Thu Nov 08 2007 jeffm@suse.de +* Wed Nov 07 2007 jeffm@suse.de - patches.suse/suse-ppc32-mol.patch: Missed a get_property(). * Wed Nov 07 2007 jkosina@suse.de - patches.suse/aslr-i386-and-x86_64-randomize-brk.patch: i386 @@ -6598,12 +6669,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Nov 06 2007 jeffm@suse.de - patches.kernel.org/patch-2.6.24-rc1-git14-3131e530ac3faf09....: kernel: snapshot to 3131e530ac3faf09fb0878a9dc4cd6df0e35b6a3. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/s390-add-FREE_PTE_NR: s390: Define FREE_PTE_NR. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - rpm/kernel-binary.spec.in: No need for wildcard in cp, both x86 and x86_64 kernels live under arch/x86 now. -* Tue Nov 06 2007 jeffm@suse.de +* Mon Nov 05 2007 jeffm@suse.de - patches.arch/ppc-pegasos-console-autodetection.patch: - patches.arch/ppc-vio-modalias.patch: - patches.arch/ppc-efika-modalias.patch: @@ -6637,12 +6708,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Nov 01 2007 philips@suse.de - patches.drivers/e1000e.patch: e1000e: revert to version that works- can be dropped for 2.6.24. -* Thu Nov 01 2007 jeffm@suse.de +* Wed Oct 31 2007 jeffm@suse.de - Removed all fuzz and refreshed in preparation for updating to 2.6.24-rc2. * Wed Oct 31 2007 hare@suse.de - patches.fixes/megaraid_mbox-dell-cerc-support: Dell CERC support for megaraid_mbox (267134). -* Tue Oct 30 2007 jeffm@suse.de +* Mon Oct 29 2007 jeffm@suse.de - patches.fixes/proc-scsi-scsi-fix.diff: scsi: iterate over devices individually for /proc/scsi/scsi (263731). * Fri Oct 26 2007 jeffm@suse.de @@ -6650,7 +6721,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 26 2007 bwalle@suse.de - patches.fixes/remove-transparent-bridge-sizing: PCI: remove transparent bridge sizing (331027). -* Fri Oct 26 2007 philips@suse.de +* Thu Oct 25 2007 philips@suse.de - patches.drivers/e1000e.patch: update to the latest version in 2.6.24-rc1 * Thu Oct 25 2007 jeffm@suse.de @@ -6683,14 +6754,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 used symbols. - patches.suse/reiser4-sync_inodes: vfs: Add ->sync_inodes super operation for reiser4. -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Restored prototype for hpet_readl -* Sat Oct 20 2007 jeffm@suse.de +* Fri Oct 19 2007 jeffm@suse.de - patches.xen/kdb-rename-TSS_sysenter_esp0-SYSENTER_stack_esp0: kdb: use SYSENTER_stack_esp0 instead of TSS_sysenter_esp0. * Fri Oct 19 2007 jeffm@suse.de - Cleaned up reiserfs patch queue according to scripts/checkpatch.pl -* Fri Oct 19 2007 jeffm@suse.de +* Thu Oct 18 2007 jeffm@suse.de - patches.rt/patch-2.6.23-rt1: rt: Removed -rt1 extension to make autobuild happy. * Thu Oct 18 2007 jeffm@suse.de @@ -6711,7 +6782,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/alsa-post-2.6.23-*: Backport patches of ALSA drivers for many bugfixes / improvements - Update config files. -* Tue Oct 16 2007 jeffm@suse.de +* Mon Oct 15 2007 jeffm@suse.de - patches.suse/reiserfs-bitmap-use-first-zero-hint.diff: Delete. - patches.suse/reiserfs-remove-first-zero-hint.diff: reiserfs: remove first_zero_hint (331814). @@ -6813,7 +6884,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.xen/handle-bogus-cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Mon Oct 01 2007 kkeil@suse.de +* Sun Sep 30 2007 kkeil@suse.de - patches.fixes/sky2-tx-sum-resume.patch: sky2: fix transmit state on resume (#297132, #326376) * Sun Sep 30 2007 jeffm@suse.de @@ -6822,13 +6893,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/handle-bogus-%%cs-selector-in-single-step-instruction-decoding: Handle bogus %%cs selector in single-step instruction decoding (326270, CVE-2007-3731). -* Sun Sep 30 2007 teheo@suse.de +* Sat Sep 29 2007 teheo@suse.de - patches.drivers/libata-HPA-off-by-one-horkage: Fix HPA handling regression (329584). * Sat Sep 29 2007 agruen@suse.de - patches.fixes/nfsv4-MAXNAME-fix.diff: knfsd: query filesystem for NFSv4 getattr of FATTR4_MAXNAME (271803). -* Sat Sep 29 2007 jeffm@suse.de +* Fri Sep 28 2007 jeffm@suse.de - patches.fixes/jffs2-fix-ACL-vs-mode-handling: Fix ACL vs. mode handling. (310520). * Fri Sep 28 2007 agruen@suse.de @@ -7518,7 +7589,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Aug 31 2007 jblunck@suse.de - rpm/post.sh: don't execute mkinitrd and update-bootloader when mkinitrd isn't installed (like for kernel-syms in the buildservice) -* Fri Aug 31 2007 jeffm@suse.de +* Thu Aug 30 2007 jeffm@suse.de - ocfs2: Fixed problem where events wouldn't get delivered for all nodes while using disk heartbeat. (296606). * Thu Aug 30 2007 schwab@suse.de @@ -7635,7 +7706,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/i386-compat-vdso - patches.drivers/ati-sb700-sata-add-all-ids.patch - patches.fixes/suspend_check_for_invalid_mem.patch -* Thu Aug 23 2007 sdietrich@suse.de +* Wed Aug 22 2007 sdietrich@suse.de - update RT config files: disable CONFIG_SYSFS_DEPRECATED * Wed Aug 22 2007 olh@suse.de - enable MODULE_DEVICE_TABLE in snd-mpc52xx-ac97 @@ -7934,7 +8005,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Enable more libata drivers on i386 and x86_64 - mostly ancient/legacy ones. - Update config files. -* Fri Aug 03 2007 olh@suse.de +* Thu Aug 02 2007 olh@suse.de - add patches.fixes/ieee1394-04-ee9be425961c3ccf75553c83a73bf1f707e66d91.patch ieee1394: raw1394: Fix read() for 32bit userland on 64bit kernel add patches.fixes/ieee1394-05-883b97eaf2a3fba7628f9f78ca7dc422aaf9728b.patch @@ -7956,7 +8027,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 switch to long SAM-conforming format in /sys/bus/scsi/devices/.../ieee1394_id because the new firewire stack uses the long format per default may simplify upgrades from fresh 10.3 installs -* Fri Aug 03 2007 gregkh@suse.de +* Thu Aug 02 2007 gregkh@suse.de - patches.drivers/usb-quirk-table-update.patch: USB: update quirk table with info from 2.6.23-rc1.- fix build error * Thu Aug 02 2007 gregkh@suse.de @@ -8053,12 +8124,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 02 2007 jeffm@suse.de - patches.suse/dm-raid45-2.6.22.1-20070724.patch: dm: add raid45 support (experimental) (280972). -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - fix merge bug in "patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops." as pointed out by aj@suse.de -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - cleanup patch fuzz to make everything except Xen patches apply cleanly. -* Thu Aug 02 2007 gregkh@suse.de +* Wed Aug 01 2007 gregkh@suse.de - patches.fixes/hpet_patches_45.patch: Force HPET to be enabled for laptops * Wed Aug 01 2007 olh@suse.de - remove initrd-flavor before rpm -U on small a /boot partition (259303) @@ -8204,7 +8275,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 16 2007 jjohanse@suse.de - Fix patches.apparmor/apparmor-intree.diff so that it adds AppArmor to the security Makefile correctly -* Mon Jul 16 2007 jjohanse@suse.de +* Sun Jul 15 2007 jjohanse@suse.de - Update AppArmor patches to lastest versions. - Remove deprecated patch patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Delete. @@ -8331,7 +8402,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch * Tue Jun 19 2007 schwab@suse.de - Remove some bogus EXPORT_SYMBOL. -* Tue Jun 19 2007 jeffm@suse.de +* Mon Jun 18 2007 jeffm@suse.de - Update to 2.6.22-rc5. * Mon Jun 18 2007 jeffm@suse.de - patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch: Updated to @@ -8356,7 +8427,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Jun 15 2007 jeffm@suse.de - Disabled patches.suse/acpi_dsdt_ssdt_initrd_initramfs.patch again, see bug 256305. -* Fri Jun 15 2007 jeffm@suse.de +* Thu Jun 14 2007 jeffm@suse.de - Update config files (vanilla). * Thu Jun 14 2007 jeffm@suse.de - Update config files. @@ -8571,7 +8642,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - ppc-efika-of_device-generic-uevent.patch: remove obsolete stuff. * Sat May 26 2007 jeffm@suse.de - patches.apparmor/remove_suid_new_case_in_2.6.22.diff: Merge fix. -* Sat May 26 2007 jeffm@suse.de +* Fri May 25 2007 jeffm@suse.de - Updated to 2.6.22-rc2-git7: - Removed due to upstream inclusion: - patches.arch/ppc-generic-check_legacy_ioport.patch @@ -8781,7 +8852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 fails (263883). * Wed Apr 18 2007 olh@suse.de - add patches.arch/ppc-ps3-device-init-ps3only.patch -* Wed Apr 18 2007 olh@suse.de +* Tue Apr 17 2007 olh@suse.de - add patches.arch/ppc-ps3-allow-duplicate-lmb_reserve.diff add patches.arch/ppc-ps3-automatically-lmb_reserve-initrd.diff add patches.arch/ppc-ps3-ps3fb.patch @@ -8852,7 +8923,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 [PPC] Fix compilation and linking errors of mpc86xads build. reiserfs: fix key decrementing nommu: fix bug ip_conntrack does not work on nommu -* Fri Apr 13 2007 bwalle@suse.de +* Thu Apr 12 2007 bwalle@suse.de - config/i386/kdump: changed physical start of the kdump kernel on i386 address back to 16M instead of 1M * Thu Apr 12 2007 jeffm@suse.de @@ -8931,7 +9002,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/cciss-add-SG_IO: Add SG_IO to cciss. * Thu Apr 05 2007 olh@suse.de - update to 2.6.21-rc5-git13, misc fixes -* Thu Apr 05 2007 olh@suse.de +* Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git12, libata fixes * Wed Apr 04 2007 olh@suse.de - update to 2.6.21-rc5-git11, msi fix @@ -8981,7 +9052,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update patches.arch/ppc-efika-bestcomm-ethernet.patch mpc52xx-pcidma -> mpc5200-bestcomm do not print errors if interface is down or on non-efika -* Wed Mar 28 2007 olh@suse.de +* Tue Mar 27 2007 olh@suse.de - update to 2.6.21-rc5-git2, misc fixes * Mon Mar 26 2007 olh@suse.de - update patches.arch/ppc-efika-bestcomm-ethernet.patch @@ -8993,7 +9064,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 24 2007 olh@suse.de - disable built-in amd8111 and sil680 IDE drivers on ppc64 build libata pata_sil680 and pata_amd -* Sat Mar 24 2007 olh@suse.de +* Fri Mar 23 2007 olh@suse.de - enable iseries support in the ppc64 kernel build dasd, cd, tape and veth driver as module * Fri Mar 23 2007 olh@suse.de @@ -9022,7 +9093,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 protocol negotiation fallback for old guests. (244055). * Fri Mar 23 2007 olh@suse.de - update to 2.6.21-rc4-git7, acpi, network, ia64, ppc fixes -* Fri Mar 23 2007 olh@suse.de +* Thu Mar 22 2007 olh@suse.de - require libsysfs2 to avoid dead network surprises * Wed Mar 21 2007 gregkh@suse.de - patch refresh due to 2.6.21-rc4 update to make everything apply cleanly. @@ -9036,7 +9107,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 sata_sil24: Add Adaptec 1220SA PCI ID. * Mon Mar 19 2007 olh@suse.de - enable pata drivers for cmd64x, mpc52xx, via and winbond on ppc32 -* Mon Mar 19 2007 olh@suse.de +* Sun Mar 18 2007 olh@suse.de - update to 2.6.21-rc4-git3 supported flag moved from U to N * Fri Mar 16 2007 teheo@suse.de @@ -9067,13 +9138,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 12 2007 neilb@suse.de - patches.fixes/nfs-readdir-timestamp: Set meaningful value for fattr->time_start in readdirplus results. (244967). -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Enable CONFIG_USB_DEVICEFS (#210899 and a zillion others.) Turns out that vmware isn't going to change anything, so making our users (and executives) have to build their own kernels is not something we we should be doing. I was wrong, sorry. -* Sat Mar 10 2007 gregkh@suse.de +* Fri Mar 09 2007 gregkh@suse.de - Update to 2.6.20.2 - lots of bugfixes and security things - removed some of our patches and had to refresh a number of others. @@ -9245,7 +9316,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 09 2007 jblunck@suse.de - kernel-source.changes, kernel-source.changes.old: reorder the changes files to be in descending chronological order. -* Thu Feb 08 2007 jeffm@suse.de +* Wed Feb 07 2007 jeffm@suse.de - patches.fixes/fix-key-serial-number-collision-handling.diff: keys: Fix key serial number collision handling (243003). * Wed Feb 07 2007 bwalle@suse.de @@ -9548,7 +9619,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.suse/dm-bbr.vmalloc: Delete. * Tue Jan 02 2007 olh@suse.de - disable dv1394, its scheduled for removal. use raw1394 instead -* Fri Dec 22 2006 kkeil@suse.de +* Thu Dec 21 2006 kkeil@suse.de - patches.fixes/patch-isdn-ppp-init-reset-state-timer: add init_timer() for ISDN PPP CCP reset state timer. * Thu Dec 21 2006 jeffm@suse.de @@ -9609,7 +9680,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 29 2006 jeffm@suse.de - enabled patches.fixes/acpi-battery-sleep-fix.diff after checking with pavel -* Wed Nov 29 2006 jeffm@suse.de +* Tue Nov 28 2006 jeffm@suse.de - patches.fixes/sys_move_pages-leak-fix.diff: Fix sys_move_pages when a NULL node list is passed. * Tue Nov 28 2006 jeffm@suse.de @@ -9702,7 +9773,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Nov 19 2006 olh@suse.de - add patches.suse/uml-offsetof.patch workaround to get offsetoff for arch/um/sys-i386/user-offsets.c -* Sat Nov 18 2006 jeffm@suse.de +* Fri Nov 17 2006 jeffm@suse.de - patches.fixes/handle-ext3-directory-corruption-better.patch: ext3: directory integrity checking (220288). * Fri Nov 17 2006 olh@suse.de @@ -9933,7 +10004,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Oct 13 2006 olh@suse.de - add patches.arch/ppc-via-pmu-acpower.patch force AC power when booting without a battery -* Fri Oct 13 2006 jeffm@suse.de +* Thu Oct 12 2006 jeffm@suse.de - patches.fixes/grow_buffers-infinite-loop-fix.diff: grow_buffers() infinite loop fix (205384). * Tue Oct 10 2006 kraxel@suse.de @@ -10323,7 +10394,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for building external modules. * Tue Aug 08 2006 schwab@suse.de - Update kdb patches. -* Tue Aug 08 2006 gregkh@suse.de +* Mon Aug 07 2006 gregkh@suse.de - Update to 2.6.18-rc4 * Mon Aug 07 2006 aj@suse.de - Fix rpm/kernel-source.spec.in to not include RPM_BUILD_ROOT in @@ -10337,7 +10408,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Aug 03 2006 gregkh@suse.de - Reorder some patches to group common things. - remove some unneeded patches and merge 2 together. -* Thu Aug 03 2006 gregkh@suse.de +* Wed Aug 02 2006 gregkh@suse.de - disable pci express hotplug driver on ppc64, as it doesn't build, and requires ACPI, which PPC doesn't have... * Wed Aug 02 2006 gregkh@suse.de @@ -10359,7 +10430,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - config/s390/default: update config file. * Wed Aug 02 2006 schwab@suse.de - config-md-raid456: Fix misspelt config. -* Wed Aug 02 2006 schwab@suse.de +* Tue Aug 01 2006 schwab@suse.de - suse-ppc32-mol-mm-context: Fix mol build. * Tue Aug 01 2006 gregkh@suse.de - rpm/kernel-binary.spec.in: add "make prepare" before trying to @@ -10393,7 +10464,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - 2.6.17 port work build breaks, but the patch set is relativly stable * Tue Aug 01 2006 gregkh@suse.de - more 2.6.17 port work (still does not build) -* Tue Aug 01 2006 gregkh@suse.de +* Mon Jul 31 2006 gregkh@suse.de - more 2.6.17 port work (still does not build, but need to save this state) - forward ported apparmor helper patches to 2.6.17 to keep that feature working * Mon Jul 31 2006 gregkh@suse.de @@ -10478,10 +10549,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jul 03 2006 okir@suse.de - patches.fixes/loop-barriers: Update to new version which can do sync/barrier writes on a per-device basis (189051). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.xen/9752-xenmem_exchange: Use new XENMEM_exchange hypercall (where possible) (181869). -* Fri Jun 30 2006 mason@suse.de +* Thu Jun 29 2006 mason@suse.de - patches.fixes/loop-barriers: [PATCH] loop: perform sync operations during writeback (189051). - patches.fixes/ipv6-no-autoconf: Allow to bring up network @@ -10769,7 +10840,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 unsupported modules to the list as well. * Tue Jun 06 2006 gregkh@suse.de - supported.conf: support some more sgi modules -* Tue Jun 06 2006 mason@suse.de +* Mon Jun 05 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Patch still disabled, change to CONFIG_IA64 only. * Mon Jun 05 2006 gregkh@suse.de @@ -10783,7 +10854,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jun 05 2006 olh@suse.de - add patches.fixes/fbcon-scrollback-garbage.patch finally: fix scrollback with logo issue immediately after boot -* Mon Jun 05 2006 mason@suse.de +* Sun Jun 04 2006 mason@suse.de - patches.suse/rcu-remote: allow specific cpus to run rcu (147431). Disable this patch for now. - patches.suse/rcu-scale: slow down rcu processing on big machines @@ -10905,13 +10976,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/x86_64-Don-t-sanity-check-Type-1-PCI-bus-access-on-newer-systems.patch: [PATCH] x86_64: Don't sanity check Type 1 PCI bus access on newer systems (160659). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.arch/x86_64-add-crashdump-trigger-points.patch: [PATCH] x86_64: x86_64 add crashdump trigger points (180105). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.fixes/cpuset-might-sleep-checking-zones-allowed-fix.patch: Cpuset: might sleep checking zones allowed fix (176595). -* Thu Jun 01 2006 gregkh@suse.de +* Wed May 31 2006 gregkh@suse.de - patches.drivers/pci-allow-msi-to-work-on-kexec-kernel.patch: PCI: Allow MSI to work on kexec kernel (148246). * Wed May 31 2006 gregkh@suse.de @@ -11246,7 +11317,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 remove trailing whitespaces fix a small memory leak when the partition is on low memory fix sleep from invalid context at mm/slab.c:2731 (173880 - LTC23729) -* Fri May 12 2006 agruen@suse.de +* Thu May 11 2006 agruen@suse.de - Enable CONFIG_MODVERSIONS for kernel-um. - patches.fixes/um-missing-exports.diff: Add the EXPORT_SYMBOLs to arch/um/kernel/ksyms.c instead; arch/um/kernel/skas/* etc. @@ -11304,7 +11375,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue May 09 2006 hare@suse.de - patches.drivers/aic79xx-external-bus-reset: Handle external bus reset gracefully (#96728) -* Tue May 09 2006 mason@suse.de +* Mon May 08 2006 mason@suse.de - patches.fixes/hugetlb-reservation: [PATCH] hugepage: serialize hugepage allocation and instantiation (154121). - patches.fixes/hugetlb-reservation-2: hugetlb reservation fixes @@ -11363,7 +11434,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.arch/s390-qdio-alignment-fix.diff: s390: fix qdio alignment problem with CONFIG_DEBUG_SLAB (146136, LTC21180). - patches.arch/s390-dasd-uid.diff: Follow-up rediff. -* Sun May 07 2006 gregkh@suse.de +* Sat May 06 2006 gregkh@suse.de - patches.fixes/fs-locks.c-Fix-sys_flock-race.patch: [PATCH] fs/locks.c: Fix sys_flock() race (173001). * Sat May 06 2006 agruen@suse.de @@ -11457,12 +11528,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed May 03 2006 hare@suse.de - patches.drivers/open-iscsi-svn.diff Update open-iscsi to svn r564 -* Wed May 03 2006 jeffm@suse.de +* Tue May 02 2006 jeffm@suse.de - patches.fixes/dm-proper-refcounting.diff: Fixed refcounting when md != NULL but md->interface_ptr is. It would return NULL, but allocate a reference that the caller has no way of freeing. Fixes bug 170321. -* Wed May 03 2006 gregkh@suse.de +* Tue May 02 2006 gregkh@suse.de - Update to 2.6.16.13 - NETFILTER: SCTP conntrack: fix infinite loop (CVE-2006-1527) * Tue May 02 2006 ak@suse.de @@ -11651,10 +11722,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 25 2006 tonyj@suse.de - patches.suse/apparmor: Fix for critical bug #159411 ("Apparmor message reports unknown xattr type"). -* Tue Apr 25 2006 olh@suse.de +* Mon Apr 24 2006 olh@suse.de - add patches.fixes/tg3-selftest-phy_reset.patch workaround for lost carrier during ethtool -t (158568 - LTC22155) -* Tue Apr 25 2006 gregkh@suse.de +* Mon Apr 24 2006 gregkh@suse.de - Update config files. * Mon Apr 24 2006 gregkh@suse.de - Update to 2.6.16.11 (bug and security fixes) @@ -11844,7 +11915,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (142547). - patches.xen/xen-acpi-nolapic: Xen: Don't process APICs/IO-APICs in ACPI when APIC is disabled. (156426). -* Wed Apr 19 2006 gregkh@suse.de +* Tue Apr 18 2006 gregkh@suse.de - Update to 2.6.16.8 (another security fix) - patches.kernel.org/patch-2.6.16.7: Delete. - patches.kernel.org/patch-2.6.16.8: Linux 2.6.16.8. @@ -11868,10 +11939,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 18 2006 olh@suse.de - update patches.arch/ppc-kdump-soft-reset.patch fix compile on ppc32 -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - patches.suse/ocfs2-update-2006-04-11.diff: OCFS2 Code Update for SLES 10 - 2006-04-11. -* Fri Apr 14 2006 jeffm@suse.de +* Thu Apr 13 2006 jeffm@suse.de - Fixes for bug #163243 - patches.fixes/idr_replace.diff: idr: add idr_replace method for replacing pointers. @@ -11923,7 +11994,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 12 2006 schwab@suse.de - uncached-allocator: Fix MCA due to attribute aliasing in uncached allocator [#161480]. -* Wed Apr 12 2006 olh@suse.de +* Tue Apr 11 2006 olh@suse.de - add patches.arch/ppc-iseries-vio-uevent.patch Allow hotplug on iSeries vio devices (159652 - LTC22358) * Tue Apr 11 2006 axboe@suse.de @@ -11999,7 +12070,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 10 2006 ak@suse.de - patches.arch/i386-apic-up: Disable ACPI APIC checking if DMI scanner decides APIC should not be enabled (162076) -* Mon Apr 10 2006 ak@suse.de +* Sun Apr 09 2006 ak@suse.de - patches.fixes/cpufreq_sysfs_max_override.patch: Disable broken patch * Fri Apr 07 2006 okir@suse.de - patches.fixes/dm_check_device_area.diff: Allow for setting of table @@ -12055,7 +12126,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 07 2006 neilb@suse.de - patches.fixes/nfsd-ref-fhandle-problem: Ignore ref_fh when crossing a mountpoint. (158737). -* Fri Apr 07 2006 tiwai@suse.de +* Thu Apr 06 2006 tiwai@suse.de - patches.drivers/alsa-ad1981hd-hp-laptop-2: Add another HP laptop with AD1981HD (153362). - patches.drivers/alsa-cs4281-probe-fix: Fix the check of timeout @@ -12125,7 +12196,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Apr 04 2006 olh@suse.de - add patches.arch/ppc-kdump-shutdown-interrupts.patch end all interrupts before starting the kdump kernel (152932 - LTC21954) -* Tue Apr 04 2006 mason@suse.de +* Mon Apr 03 2006 mason@suse.de - patches.drivers/e1000-no-tso: [e1000] Disable TSO for now (157600). - patches.fixes/hrtimer-opt: optimize run_hrtimer_queue when @@ -12163,12 +12234,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 the invoking task is in. (162327). - patches.fixes/inotify-emit-delete: fix inotify to emit delete events (162437). -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - add patches.arch/ppc-iseries-slb_initialize.patch iSeries needs slb_initialize to be called (154542 - LTC22125) -* Mon Apr 03 2006 agruen@suse.de +* Sun Apr 02 2006 agruen@suse.de - patches.fixes/remove-MODULE_PARM: compile-time fix on x86_64. -* Mon Apr 03 2006 olh@suse.de +* Sun Apr 02 2006 olh@suse.de - readd patches.arch/ppc32-cflags.patch compile with -mcpu=powerpc to remove all nops * Sun Apr 02 2006 agruen@suse.de @@ -12526,7 +12597,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 20 2006 olh@suse.de - add patches.fixes/ibmvscsi-prevent-scsi-cmds.patch prevent scsi commands being sent in invalid state (158854 - LTC22480) -* Sat Mar 18 2006 olh@suse.de +* Fri Mar 17 2006 olh@suse.de - add patches.arch/ppc-spidernet-duplicate-symbol.patch allow sungem/spidernet coexistance * Fri Mar 17 2006 gregkh@suse.de @@ -12676,10 +12747,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc6 network driver fixes, psmouse - disable autoresync, ext3 fixes fix pcmcia_device_probe oops, misc other fixes -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.arch/ppc64-fixup_phb_devs.patch DLPAR add DDR/P5IOC, adapters improperly configured (157014 - LTC22280) -* Sat Mar 11 2006 olh@suse.de +* Fri Mar 10 2006 olh@suse.de - add patches.suse/mv643xx_eth.SET_NETDEV_DEV.patch autoload the gige network driver on pegasos2 (#117053) - add patches.suse/suse-ppc-xmon-dump-raw.patch @@ -12746,7 +12817,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix compiling /usr/src/linux directly with O= (65891). - patches.fixes/xfs-include: Remove spaces in `-I ...' in EXTRA_CFLAGS, and use src and srctree instead of TOPDIR. -* Thu Mar 09 2006 schwab@suse.de +* Wed Mar 08 2006 schwab@suse.de - Enable CONFIG_PNPACPI on ia64. * Wed Mar 08 2006 olh@suse.de - update patches.drivers/e100-ethtool-sefltest.patch @@ -13104,10 +13175,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.16-rc4-git7, sky2, r8169, skge, network fixes * Fri Feb 24 2006 ak@suse.de - Disable ACPI blacklist year on x86-64 -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de Update to 2.6.16-rc4-git6 - firewire driver fixes -* Fri Feb 24 2006 gregkh@suse.de +* Thu Feb 23 2006 gregkh@suse.de - patches.drivers/usb-unusual_devs-entry-for-lyra-rca-rd1080.patch: USB: unusual_devs entry for Lyra RCA RD1080 (#152175). * Thu Feb 23 2006 jbeulich@novell.com @@ -13232,7 +13303,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 scheduling timeslices and exports HZ in /proc). - patches.suse/lkcd.patch: Rediff. - patches.suse/schedstats-delayacct: Rediff. -* Mon Feb 20 2006 agruen@suse.de +* Sun Feb 19 2006 agruen@suse.de - Remove the obsolete lib/modules/scripts and lib/modules/precompiled directories. * Sun Feb 19 2006 agruen@suse.de @@ -13259,7 +13330,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - added patch to revert OCFS2 changes in 2.6.16-rc3-git9 * Sat Feb 18 2006 olh@suse.de - update to 2.6.16-rc4, network driver, s390, libata, misc fixes -* Sat Feb 18 2006 olh@suse.de +* Fri Feb 17 2006 olh@suse.de - update to 2.6.16-rc3-git9, ocfs2, x86_64, ia64 fixes * Fri Feb 17 2006 mason@suse.de - patches.arch/i386-smp-read-mpc: compile fix @@ -13393,9 +13464,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - reiserfs fix - drm oops fix - other minor things. -* Wed Feb 15 2006 ak@suse.de +* Tue Feb 14 2006 ak@suse.de - Disable CONFIG_EFI on x86 since it's broken -* Wed Feb 15 2006 agruen@suse.de +* Tue Feb 14 2006 agruen@suse.de - Rename kernel-xen-pae to kernel-xenpae: we don't support dashes in flavor names. - Classify all kernel-xen* packages as flavors of Xen. @@ -13549,7 +13620,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Feb 10 2006 gregkh@suse.de - patches.drivers/it87-fix-oops-on-removal.patch: [PATCH] it87: Fix oops on removal (#149538). -* Fri Feb 10 2006 gregkh@suse.de +* Thu Feb 09 2006 gregkh@suse.de Update to 2.6.16-rc2-git7: - picks up a number of ia64 patches that people wanted - added unshare syscall for x86-64 @@ -13637,10 +13708,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 (SGI:PV946630, 148680). * Thu Feb 09 2006 gregkh@suse.de - supported.conf: updated the pci hotplug driver list -* Thu Feb 09 2006 gregkh@suse.de +* Wed Feb 08 2006 gregkh@suse.de Update to 2.6.16-rc2-git5 - Update config files. -* Thu Feb 09 2006 mason@suse.de +* Wed Feb 08 2006 mason@suse.de - patches.fixes/kexec-asm.diff: fixup inline asm for kexec (147851). * Wed Feb 08 2006 agruen@suse.de @@ -13878,7 +13949,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 02 2006 ak@suse.de - patches.arch/x86_64-mcfg-fix-zero-entry-workaround: Fix zero mcfg entry workaround on x86-64 (#147551) -* Thu Feb 02 2006 tiwai@suse.de +* Wed Feb 01 2006 tiwai@suse.de - patches.drivers/alsa-hda-alc882-typo-fix: [ALSA] hda-codec - Fix typos in alc882 model table. - patches.suse/lkcd-ata_piix-polling: Support polling mode @@ -13920,9 +13991,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 dereference in xfs_buf_rele (145204). - Re-enable DMAPI, it was not the reason for the problems with xfs. -* Wed Feb 01 2006 mason@suse.de +* Tue Jan 31 2006 mason@suse.de - patches.suse/acpi-hotkeys-extra.diff: get rid of Kconfig.orig -* Wed Feb 01 2006 agruen@suse.de +* Tue Jan 31 2006 agruen@suse.de - kernel-binary %%post/%%postun: add calls to /sbin/update-bootloader to add a Previous Kernel entry when installing another kernel. * Tue Jan 31 2006 agruen@suse.de @@ -13950,7 +14021,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 mark ipt6t_HL module as supported mark sound/i2c/other/snd-ak4114 as supported mark sound/pci/rme9652/snd-hdspm as supported -* Tue Jan 31 2006 mason@suse.de +* Mon Jan 30 2006 mason@suse.de - patches.suse/shmall-bigger: Delete. olh convinced me this best done in userland * Mon Jan 30 2006 mason@suse.de @@ -13998,7 +14069,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 huge children will not always make their father die but may be hit directly. Display OOM score of selected process before we start killing children and itself. -* Sun Jan 29 2006 agruen@suse.de +* Sat Jan 28 2006 agruen@suse.de - Some more minor novell-kmp example cleanups. * Sat Jan 28 2006 tonyj@suse.de - Complete renaming from SubDomain to new product name 'AppArmor' @@ -14045,21 +14116,21 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_CONNECTOR on iseries64 * Fri Jan 27 2006 jeffm@suse.de - Fixed two potential crashes in ocfs2. -* Fri Jan 27 2006 gregkh@suse.de +* Thu Jan 26 2006 gregkh@suse.de - patches.drivers/sysfs-crash-debugging.patch: display last accessed sysfs file on kernel panic message. Makes debugging sysfs issues easier. Taken from -mm and only turned on (in the patch not a build issue) for i386 and x86_64, other arches might also want it. -* Fri Jan 27 2006 rw@suse.de +* Thu Jan 26 2006 rw@suse.de - patches.suse/dmiscan-4-ia64: Enable DMI table parsing on ia64. (#142320) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - add patches.suse/e1000-D3-cold-wake.patch remove bogus error checking in e1000 driver -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - enable TPM on ppc64 (145964 - LTC21007) -* Fri Jan 27 2006 olh@suse.de +* Thu Jan 26 2006 olh@suse.de - disable numa in the kdump kernel * Thu Jan 26 2006 okir@suse.de - patches.drivers/e100-resume-fix: e100: stop calling e100_hw_init @@ -14176,7 +14247,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - scripts/tar-up.sh: Check for leftover conflict markers in patches and in the changelog. - rpm/post.sh: Check for xen* to allow for future xen[0U] etc. -* Tue Jan 24 2006 mason@suse.de +* Mon Jan 23 2006 mason@suse.de - make loop a module * Mon Jan 23 2006 mason@suse.de - patches.suse/lkcd.patch: Fix bad kfree during netdump setup @@ -14286,7 +14357,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Jan 22 2006 olh@suse.de - disable patches.fixes/dput_late_iput.diff (136310) disable patches.fixes/prune_one_dentry-late_iput.diff -* Sun Jan 22 2006 agruen@suse.de +* Sat Jan 21 2006 agruen@suse.de - patches.suse/lookup_hash_nameidata.diff: Delete another subfs specific patch. * Sat Jan 21 2006 olh@suse.de @@ -14296,11 +14367,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/mv643xx_eth-1-Fix_spinlock_recursion_bug.patch * Sat Jan 21 2006 olh@suse.de - fix patches.arch/ppc-mac-io-MODALIAS.patch -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix xen compile. -* Sat Jan 21 2006 mason@suse.de +* Fri Jan 20 2006 mason@suse.de - patches.suse/lkcd.patch: fix ppc compile problem #1 -* Sat Jan 21 2006 tonyj@suse.de +* Fri Jan 20 2006 tonyj@suse.de - patches.suse/kdb-common: fix debug compile error (page_private) * Fri Jan 20 2006 mason@suse.de - Update config files (lkcd only on ia64) @@ -14391,12 +14462,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 rpaphp needs this symbol * Tue Jan 17 2006 mason@suse.de - Update config files. (run oldconfig on x86_64) -* Tue Jan 17 2006 ak@suse.de +* Mon Jan 16 2006 ak@suse.de - Update config files. * Disable DEBUG_MUTEXES except in debug kernels * Enable SOFTLOCKUP detection everywhere * Other fixes -* Tue Jan 17 2006 agruen@suse.de +* Mon Jan 16 2006 agruen@suse.de - patches.fixes/kdb-page-module-fix: fix moved into patches.suse/kdb-common. * Mon Jan 16 2006 mason@suse.de @@ -14510,7 +14581,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Jan 16 2006 okir@suse.de - patches.suse/ioat-dma-*: Enabled IOAT (142510). - Update config files. -* Mon Jan 16 2006 mason@suse.de +* Sun Jan 15 2006 mason@suse.de - enable CONFIG_PAGG on ia64 - patches.suse/pagg.patch: Add PAGG support (141680). * Sun Jan 15 2006 mason@suse.de @@ -14665,11 +14736,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jan 10 2006 okir@suse.de - patches.suse/safer-ip-reassembly: Try to prevent incorrect IPv4 fragment reassembly (141860, FATE 153166, SGI 938114). -* Tue Jan 10 2006 gregkh@suse.de +* Mon Jan 09 2006 gregkh@suse.de - patches.drivers/ioc3-ia64-serial-port-driver.patch: Add driver support for a 2 port PCI IOC3-based serial card on Altix boxes (#141879). -* Tue Jan 10 2006 mason@suse.de +* Mon Jan 09 2006 mason@suse.de - Disable kprobes for kernel-xen * Mon Jan 09 2006 rw@suse.de - patches.suse/acct-eop-hook: @@ -14714,7 +14785,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_TMPFS_POSIX_ACL in the config files. * Sat Jan 07 2006 olh@suse.de - add patches.fixes/hotplug_memory_notifier.patch (141759 - LTC20531) -* Sat Jan 07 2006 olh@suse.de +* Fri Jan 06 2006 olh@suse.de - enable CONFIG_MEMORY_HOTPLUG on ppc64 (141759 - LTC20531) * Fri Jan 06 2006 jeffm@suse.de - temporarily disabled ocfs2 userspace clustering @@ -14912,7 +14983,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Dec 14 2005 olh@suse.de - disable patches.fixes/reiserfs-skip-commit-on-error.diff disable patches.fixes/reiserfs-close-open-transactions.diff -* Wed Dec 14 2005 olh@suse.de +* Tue Dec 13 2005 olh@suse.de - update patches.arch/ppc64-xmon-dmesg-printing.patch fix incorrect merge * Tue Dec 13 2005 olh@suse.de @@ -14942,7 +15013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 symvers-x.y.z-arch-flavor.gz to symvers-x.y.z-flavor.gz. * Fri Dec 09 2005 tonyj@suse.de - Drop -Werror in AppArmor module (causing non i386 builds to fail) -* Fri Dec 09 2005 tonyj@suse.de +* Thu Dec 08 2005 tonyj@suse.de - supported.conf: add new AppArmor submodule sdmatch_pcre - Update config files to re-enable AppArmor - patches.suse/subdomain: update AppArmor to r5891 @@ -15003,7 +15074,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Dec 06 2005 hare@suse.de - patches.drivers/scsi-misc Update to scsi-misc git tree. -* Tue Dec 06 2005 tiwai@suse.de +* Mon Dec 05 2005 tiwai@suse.de - patches.drivers/alsa-decl: Delete. - patches.drivers/alsa-git-2.6.15: Update ALSA git patches. * Mon Dec 05 2005 kraxel@suse.de @@ -15015,7 +15086,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Dec 05 2005 kraxel@suse.de - Update xen and uml patches. - Update config files. -* Mon Dec 05 2005 olh@suse.de +* Sun Dec 04 2005 olh@suse.de - add patches.arch/ppc-mac-io-MODALIAS.patch * Sun Dec 04 2005 schwab@suse.de - Update to 2.6.15-rc5. @@ -15050,7 +15121,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Nov 30 2005 tiwai@suse.de - patches.fixes/drm-null-reference-fix: Fix NULL reference in drm (132271). -* Wed Nov 30 2005 jeffm@suse.de +* Tue Nov 29 2005 jeffm@suse.de - patches.fixes/reiserfs-cnode-failure.diff: reiserfs: handle cnode allocation failure gracefully (#133999). * Tue Nov 29 2005 schwab@suse.de @@ -15106,7 +15177,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix memory management error during setting up new advapi sockopts. Fix sending extension headers before and including routing header. hwmon: Fix missing boundary check when setting W83627THF in0 limits -* Thu Nov 24 2005 tonyj@suse.de +* Wed Nov 23 2005 tonyj@suse.de - reenable subdomain (AppArmor) in series.conf - add CONFIG_SECURITY_SUBDOMAIN to necessary config files - small patch to export necessary symbols from audit subsystem @@ -15269,9 +15340,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Oct 31 2005 olh@suse.de - add patches.arch/ppc64-xmon-dmesg-printing.patch syslog printing for xmon debugger. -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - add patches.arch/ppc64-vio-MODALIAS.patch (56865 - LTC9238) -* Mon Oct 31 2005 olh@suse.de +* Sun Oct 30 2005 olh@suse.de - enable CONFIG_XMON_DEFAULT on ppc64 * Sat Oct 29 2005 olh@suse.de - add patches.arch/s390-const-pointer-uaccess.patch @@ -15342,7 +15413,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable CONFIG_SECCOMP on x86-64 * Wed Oct 12 2005 ak@suse.de - disable CONFIG_EXT2_FS_XIP for anything but s390 -* Wed Oct 12 2005 olh@suse.de +* Tue Oct 11 2005 olh@suse.de - add patches.rpmify/offsets_h-dirname.patch remove the $RPM_BUILD_ROOT string from generated files * Tue Oct 11 2005 gregkh@suse.de @@ -15387,7 +15458,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Sorry about the mess this caused... * Tue Oct 11 2005 gregkh@suse.de - Start replacing +check2614 with the real owners -* Tue Oct 11 2005 olh@suse.de +* Mon Oct 10 2005 olh@suse.de - add patches.suse/suse-ppc32-mol-verify_area.patch verify_area was removed in 2.6.14 * Mon Oct 10 2005 olh@suse.de @@ -15512,7 +15583,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 13 2005 tiwai@suse.de - patches.drivers/alsa-opl3sa2-unregister-fix.diff: [ALSA] snd_opl3sa2: add missing pnp_unregister_driver() calls (116586). -* Tue Sep 13 2005 mason@suse.de +* Mon Sep 12 2005 mason@suse.de - patches.suse/reiserfs-bkl-inversion: fix reiserfs lock inversion of bkl vs inode semaphore (116531). * Mon Sep 12 2005 ak@suse.de @@ -15859,7 +15930,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 22 2005 hare@suse.de - Update iscsitarget to svn r1247. - Update configs. -* Mon Aug 22 2005 garloff@suse.de +* Sun Aug 21 2005 garloff@suse.de - Update Xen patches to hg-6305. - Fix overlapping link segments on xen x86-64. * Sun Aug 21 2005 olh@suse.de @@ -16224,10 +16295,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Aug 02 2005 olh@suse.de - update patches.suse/legacy-remap_page_range readd check_user_page_readable declaration for oprofile -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - add patches.suse/error-implicit-function-declaration.patch add -Werror-implicit-function-declaration to CFLAGS -* Tue Aug 02 2005 olh@suse.de +* Mon Aug 01 2005 olh@suse.de - update patches.drivers/qla4xxx disable driver, update email address of submitter * Mon Aug 01 2005 olh@suse.de @@ -16256,7 +16327,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Aug 01 2005 okir@suse.de - patches.fixes/nfsd-rewrite-align: NFS: Fix rewrite performance (97941, 96957) -* Mon Aug 01 2005 olh@suse.de +* Sun Jul 31 2005 olh@suse.de - update to 2.6.13-rc4-git3, updates all over the place * Sat Jul 30 2005 agruen@suse.de - Mark pdc202xx_old as supported, just like pdc202xx_new. @@ -16516,7 +16587,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix dash/underscore conversion for RPM tags. * Wed Jun 29 2005 garloff@suse.de - Preliminary update of xen patches. -* Wed Jun 29 2005 garloff@suse.de +* Tue Jun 28 2005 garloff@suse.de - patches.suse/security-*: Update and reenable security stubs cleanup patches. * Tue Jun 28 2005 agruen@suse.de @@ -16650,7 +16721,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 09 2005 axboe@suse.de - patches.fixes/ata_piix-scan-all-enabled-ports: ata_piix does not find any devices on ACER laptop (78564). -* Thu Jun 09 2005 olh@suse.de +* Wed Jun 08 2005 olh@suse.de - add patches.arch/ppc-export-macio_find.patch export for alsa * Wed Jun 08 2005 olh@suse.de @@ -16761,7 +16832,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 09 2005 agruen@suse.de - patches.fixes/asm-gcc4: compile fixes for kernel-xen from ro@suse.de. -* Sat May 07 2005 schwab@suse.de +* Fri May 06 2005 schwab@suse.de - Fix some missing exports. * Fri May 06 2005 mantel@suse.de - patches.fixes/export-sock_getsockopt: export symbol @@ -16791,7 +16862,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Set CONFIG_KDB_CONTINUE_CATASTROPHIC=2 in sn2 config [#80446]. * Wed Apr 27 2005 schwab@suse.de - Make kernel compilable with gcc4. -* Wed Apr 27 2005 olh@suse.de +* Tue Apr 26 2005 olh@suse.de - enable CONFIG_CC_OPTIMIZE_FOR_SIZE on ppc, to keep the stripped vmlinux file size below 4M. this is a hard requirement for COFF netboot @@ -16829,7 +16900,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 06 2005 agruen@suse.de - rpm/prepare-build.sh: Don't drop the list of km_ modules from BuildRequires: this breaks kernel building with build.rpm. -* Tue Apr 05 2005 schwab@suse.de +* Mon Apr 04 2005 schwab@suse.de - Enable CONFIG_PCI_MSI on ia64. * Mon Apr 04 2005 axboe@suse.de - patches.fixes/aio-up_read-deadlock: [PATCH] rwsem: Make rwsems @@ -16888,7 +16959,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 and other kernel binaries (bug #73642). * Sat Mar 19 2005 garloff@suse.de - Fix patches.xen/drm-io-remap-pfn-range broken by last rediff. -* Sat Mar 19 2005 garloff@suse.de +* Fri Mar 18 2005 garloff@suse.de - Update subdomain LSM. * Fri Mar 18 2005 kkeil@suse.de - reenable ppp-mppe pptp driver (#73043) @@ -16910,7 +16981,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Mar 18 2005 mantel@suse.de - patches.fixes/no-partition-check-for-pcmcia.patch: Do not rescan for partitions on CF cards with PCMCIA adapters. -* Fri Mar 18 2005 mason@suse.de +* Thu Mar 17 2005 mason@suse.de - patches.fixes/rwv_einval: readv and writev should check for EINVAL before Efault (71223). * Thu Mar 17 2005 okir@suse.de @@ -16928,7 +16999,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Updated Xen patches. * Thu Mar 17 2005 jeffm@suse.de - series.conf: enabled set_blocksize_race.diff -* Thu Mar 17 2005 axboe@suse.de +* Wed Mar 16 2005 axboe@suse.de - patches.fixes/cfq-pending-work-fixup: Fixup error in cfq-pending-work. * Wed Mar 16 2005 jeffm@suse.de @@ -17020,7 +17091,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - series.conf: Check up on various disabled patches * Mon Mar 14 2005 garloff@suse.de - Enable subdomain LSM. -* Mon Mar 14 2005 vojtech@suse.cz +* Sun Mar 13 2005 vojtech@suse.cz - patches.fixes/framebuffer-cursor-fix.diff Fix cursor behavior - patches.fixes/uli526x-fix.diff @@ -17410,10 +17481,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.drivers/input-bk-2074.diff: Fix ALPS oops on resume/suspend (Ruediger Oertel : [kernel] oops during s-t-d) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2073.diff: Fix psmouse.resetafter (#59325) -* Sat Mar 05 2005 vojtech@suse.cz +* Fri Mar 04 2005 vojtech@suse.cz - patches.drivers/input-bk-2072.diff: Fix ALPS DualPoint stick (#70928) * Fri Mar 04 2005 vojtech@suse.cz @@ -17421,7 +17492,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 default. Fixes bug #67239 and similar. * Fri Mar 04 2005 gregkh@suse.de - patches.fixes/patch-2.6.11.1: 2.6.11.1 release from kernel.org. -* Fri Mar 04 2005 jeffm@suse.de +* Thu Mar 03 2005 jeffm@suse.de - patches.fixes/02-vfs-private-selinux.diff~: Delete. - patches.fixes/02-vfs-private-flag-workaround.diff: workaround for vfs_link crash reported on research list. @@ -17824,7 +17895,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.drivers/bk-ieee1394.patch from 2.6.11-rc3-mm2 * Sat Feb 19 2005 olh@suse.de - update to 2.6.11-rc4-bk7, bluetooth fix -* Sat Feb 19 2005 mason@suse.de +* Fri Feb 18 2005 mason@suse.de Update the NAT over IPsec patches - Update config files. - patches.suse/netfilter-02-output-hooks: @@ -18770,7 +18841,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 option on x86 and be even more strict on x86-64 * Wed Nov 03 2004 axboe@suse.de - Fix O_DIRECT EOF handling -* Sat Oct 30 2004 olh@suse.de +* Fri Oct 29 2004 olh@suse.de - add patches.arch/x86_64-make-O-boot.patch allow make O=$dir * Fri Oct 29 2004 mantel@suse.de @@ -18781,7 +18852,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix race when unlinking incoming connections - patches.fixes/patch-2.6.8-006-bluetooth-cmtp-free-skb-fix: Let the CAPI free the SKB in the error case -* Fri Oct 29 2004 vojtech@suse.cz +* Thu Oct 28 2004 vojtech@suse.cz - patches.fixes/ioremap-pageattr-fix: fix incorrect calls to pageattr in ioremap/iounmap and refcounting problems in pageattr itself on x86-64 and i386. Thanks to Andi and @@ -18801,7 +18872,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/kswapd_balance: fix longstanding bug in kswapd that didn't balance correctly the zones with the protection (now lowmem_reserve) algorithm enabled. -* Wed Oct 27 2004 axboe@suse.de +* Tue Oct 26 2004 axboe@suse.de - libata must return -ENOTTY for unknown ioctls, not -EOPNOTSUPP * Tue Oct 26 2004 axboe@suse.de - Fix ide interrupt pinning (SUSE47425) @@ -18851,7 +18922,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fix threaded user page write memory ordering Make sure we order the writes to a newly created page with the page table update that potentially exposes the page to another CPU. -* Sun Oct 17 2004 agruen@suse.de +* Sat Oct 16 2004 agruen@suse.de - patches.rpmify/extmod-extra: Support official variable name INSTALL_MOD_DIR in addition to our MOD_DIR. * Fri Oct 15 2004 okir@suse.de @@ -18868,7 +18939,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 reenable. * Wed Oct 13 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix the fix. -* Wed Oct 13 2004 agruen@suse.de +* Tue Oct 12 2004 agruen@suse.de - patches.drivers/infiniband-kbuild: Fix kbuild (O=). - patches.drivers/cx88-kbuild: Fix kbuild (O=). * Tue Oct 12 2004 agruen@suse.de @@ -18914,7 +18985,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix Thinkpad C2/C3 workaround (SUSE45404) * Tue Oct 05 2004 ak@suse.de - Add two scheduler load balance fixes from l-k -* Tue Oct 05 2004 agruen@suse.de +* Mon Oct 04 2004 agruen@suse.de - patches.fixes/no-oom-kill: SUSE46535: Add local-oom-kill sysctl to allow disabling the OOM killer - timestamps: Add the most important SUSE LINUX 9.2 snapshot @@ -19095,7 +19166,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fixing refcount error for input_device (SUSE45823). * Sun Sep 26 2004 ak@suse.de - Fix compilation on i386 -* Sun Sep 26 2004 olh@suse.de +* Sat Sep 25 2004 olh@suse.de - update Release: tag for all specfiles, not just the current one (SUSE45207) * Sat Sep 25 2004 olh@suse.de @@ -19176,7 +19247,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Disable warning in cpufreq /proc interface code * Tue Sep 21 2004 ak@suse.de - Fix x86-64 compat waitid call for new interface -* Tue Sep 21 2004 olh@suse.de +* Mon Sep 20 2004 olh@suse.de - add patches.suse/subfs.patch, avoid km_* mess if possible * Mon Sep 20 2004 ak@suse.de - Add "M" tainted flag for machine checks on i386 and x86-64 @@ -19292,7 +19363,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 convert from (long) to (void __iomem *). * Fri Sep 17 2004 jeffm@suse.com - Fix host-skas3 compilation. -* Fri Sep 17 2004 olh@suse.de +* Thu Sep 16 2004 olh@suse.de - enable CONFIG_PROC_MM for uml on i386 * Thu Sep 16 2004 schwab@suse.de - Fix kdb compilation. @@ -19338,7 +19409,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Sep 14 2004 kkeil@suse.de - readd SET_NETDEV_DEV() call to sk98lin; lost by update (SUSE45174) - enable vm_reserved patch -* Tue Sep 14 2004 garloff@suse.de +* Mon Sep 13 2004 garloff@suse.de - Make alps driver less chatty. - Async serio input probing. * Mon Sep 13 2004 agruen@suse.de @@ -19357,7 +19428,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - rpm/kernel-binary.spec.in: Put Module.symvers file into /usr/src/linux-obj/$ARCH/$FLAVOR/ so that modules can be built for the running kernel even without the kernel-syms package. -* Fri Sep 10 2004 mason@suse.de +* Thu Sep 09 2004 mason@suse.de - add reiserfs-iosize-hotfix to solve rpm problems with the larger io sizes * Thu Sep 09 2004 agruen@suse.de @@ -19430,7 +19501,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - swsusp-linker-section-flags: Use currect section flags (x86-64) - rss-limit-enforce: page out pages if process is over RSS and there's memory pressure. -* Tue Aug 31 2004 agruen@suse.de +* Mon Aug 30 2004 agruen@suse.de - patches.fixes/undo-broken-fh-conversion: Undo broken FH conversion that broke nfsroot compile. - patches.suse/sunrpc-change-program-4: Add function to iswitch to @@ -19563,7 +19634,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_DVB_AV7110_OSD on amd64 (SUSE43455). * Wed Aug 18 2004 schwab@suse.de - Remove obsolete hp-sx1000 patches. -* Wed Aug 18 2004 schwab@suse.de +* Tue Aug 17 2004 schwab@suse.de - Fix IPv6 mobility patches. * Tue Aug 17 2004 garloff@suse.de - bio-uncopy-free-on-write: fix mem leak triggered by writing @@ -19942,7 +20013,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 ltt-hooks-remove-non-i386-7.39.patch - Updated patches.arch/s390-06-{01,05,07,11}-april2004.diff patches have been rearranged; update to conform to IBMs patches. -* Thu Jul 15 2004 agruen@suse.de +* Wed Jul 14 2004 agruen@suse.de - SUSE42972 / LTC9906: Fix include/linux/version.h build dependencies. * Wed Jul 14 2004 garloff@suse.de - Fixes for bug SUSE42748: @@ -20081,7 +20152,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Fix iommu=memaper= option on x86-64. - Add new iommu=noaperture option to disable aperture setup on x86-64 (SUSE42450) -* Fri Jun 25 2004 ak@suse.de +* Thu Jun 24 2004 ak@suse.de - Increase software iotlb default size on em64t and ia64 to 64MB (SUSE42448) * Thu Jun 24 2004 okir@suse.de @@ -20156,7 +20227,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 22 2004 agruen@suse.de - Merge recent kbuild improvements, update the documentation and demo module. Add upstream documentation. Looking good now. -* Tue Jun 22 2004 ak@suse.de +* Mon Jun 21 2004 ak@suse.de - Handle maxnode == 0 in NUMA API too (suggested by agruen) * Mon Jun 21 2004 agruen@suse.de - SUSE41420: replace patches.suse/xfs-blockdev with patches.fixes/ @@ -20219,7 +20290,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - kernel-source package: Prevent the /etc/init.d/running-kernel boot script from needlessly touching files in /usr/src/linux: this triggers superfluous rebuilds. (From SLES9 branch.) -* Thu Jun 17 2004 garloff@suse.de +* Wed Jun 16 2004 garloff@suse.de - vgettimeofday-optimize: Don't do int 0x80 instead of sysenter. * Wed Jun 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-phb-id-rev3.patch @@ -20305,7 +20376,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Jun 15 2004 agruen@suse.de - SUSE40829 / LTC8406: patches.fixes/power3-numabug: Fix memory zone setup that caused the emergency pool to underrun. -* Tue Jun 15 2004 olh@suse.de +* Mon Jun 14 2004 olh@suse.de - add patches.arch/ppc64-fix-out_be64.patch fixes out_be64 implementation on ppc64 along with a glich in out_be32 (inconsistent) use of barrier. @@ -20345,7 +20416,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 at all. Similar to how mainline works. * Sat Jun 12 2004 schwab@suse.de - Rename modules to work around lkcd bug [SUSE41891]. -* Sat Jun 12 2004 garloff@suse.de +* Fri Jun 11 2004 garloff@suse.de - hugetlb-disable-nonstd-maphugetlb-sysctl: Don't honour MAP_HUGETLB; instead print a warning. It can be enabled by sysctl though. It's deprecated and will be removed. SUSE41918. @@ -20375,7 +20446,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Detect correct bank on fatal MCEs on x86-64 * Fri Jun 11 2004 ak@suse.de - Avoid printks for handled SIGSEGVs on x86-64 -* Fri Jun 11 2004 agruen@suse.de +* Thu Jun 10 2004 agruen@suse.de - Fix thinko in third-party module support (+external). * Thu Jun 10 2004 agruen@suse.de - Add README.SUSE to kernel-source file list. @@ -20392,7 +20463,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Jun 10 2004 axboe@suse.de - Don't move completion event to request sense structure, it causes nasties with completing on dead request (bug SUSE38944) -* Thu Jun 10 2004 mason@suse.de +* Wed Jun 09 2004 mason@suse.de - barrier-eopnotsupp, deal with asynchronous ide barrier failures * Wed Jun 09 2004 ak@suse.de - Make sure x86-64 machine check handler logs correct MCE @@ -20442,7 +20513,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 TEST_UNIT_READY (SUSE41689). * Wed Jun 09 2004 ak@suse.de - Really remove ibm-noacpi patch now -* Wed Jun 09 2004 agruen@suse.de +* Tue Jun 08 2004 agruen@suse.de - patches.fixes/downgrade_write: Fix from mainline. - patches.fixes/ext3-htree-rename: htree rename fix from mainline. * Tue Jun 08 2004 garloff@suse.de @@ -20595,7 +20666,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Let acpi=force overwrite pci=noacpi blacklists (SUSE41206) * Fri Jun 04 2004 ak@suse.de - fix name of IBM HS40 in dmi blacklist -* Fri Jun 04 2004 axboe@suse.de +* Thu Jun 03 2004 axboe@suse.de - Bad length check in cdrom_get_random_writable() (SUSE41245) * Thu Jun 03 2004 olh@suse.de - add patches.fixes/no_cpuhp_on_nonlpar.patch @@ -20848,11 +20919,11 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - aio debugging patch * Fri May 28 2004 ak@suse.de - add missing GSI code for es7000 (SUSE41319) -* Fri May 28 2004 agruen@suse.de +* Thu May 27 2004 agruen@suse.de - patches.fixes/xfs-overflow: Fix 64-bit overflow. - Make failures in external modules non-fatal. - Make unlisted modules non-fatal. -* Fri May 28 2004 olh@suse.de +* Thu May 27 2004 olh@suse.de - add patches.arch/ibm-ppc64-numa-off.patch handle numa=off (SUSE41334 - LTC8921) * Thu May 27 2004 olh@suse.de @@ -21335,7 +21406,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 new reiserfs block allocator * Fri May 21 2004 mason@suse.de - bug SUSE40937, SUSE40929, SUSE40396 ckrm fixes -* Fri May 21 2004 mason@suse.de +* Thu May 20 2004 mason@suse.de - bugzilla dump - bug SUSE40391, SUSE40660, SUSE40659, SUSE40653 - ckrm fixes - bug SUSE40755 lkcd fix for ppc64 @@ -21390,7 +21461,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 if selinux is not enabled to avoid perf penalty. (SUSE39439) * Thu May 20 2004 olh@suse.de - enable zilog console for pmac64 -* Thu May 20 2004 olh@suse.de +* Wed May 19 2004 olh@suse.de - add patches.drivers/qla-check-pci_map_sg-2.patch check for pci_map_sg failure (SUSE40677 - LTC8321) * Wed May 19 2004 olh@suse.de @@ -21571,13 +21642,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 floating point in jfs. * Sun May 16 2004 schwab@suse.de - Fix botched riva fbdev lvalue conversion. -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - disable patches.fixes/jfs-commit_threads, uses floats (SUSE40540) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - add patches.arch/ibm-ppc64-fix-smt-oprofile set the run latch in the control register to make PMC6 count (SUSE40643 - LTC8582) -* Sun May 16 2004 olh@suse.de +* Sat May 15 2004 olh@suse.de - update patches.fixes/e1000-netdev_register.patch move debug printk (SUSE40181 - LTC8195) * Sat May 15 2004 olh@suse.de @@ -21664,9 +21735,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix relayfs to use a workqueue for file removal (SUSE40393) - fix the kernel taint message to send the proper number of args to printk (patches.suse/tainted-warning) -* Fri May 14 2004 mantel@suse.de +* Thu May 13 2004 mantel@suse.de - back put aic7xxx driver update: driver panics -* Fri May 14 2004 kkeil@suse.de +* Thu May 13 2004 kkeil@suse.de - fix typo in the PCMCIA driver name in avm_cs.c * Thu May 13 2004 olh@suse.de - add patches.arch/suse-ppc64-iseries-available_veth @@ -21788,9 +21859,9 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 in the config files. * Thu May 13 2004 okir@suse.de - Fix TCPv6 dst underruns introduced by MIPv6 patch (SUSE39713) -* Thu May 13 2004 schwab@suse.de +* Wed May 12 2004 schwab@suse.de - Only strip debug symbols from vmlinux. -* Thu May 13 2004 ak@suse.de +* Wed May 12 2004 ak@suse.de - add amd 8131 hotplug pci driver * Wed May 12 2004 kraxel@suse.de - make uml kernels uname syscall return machine == "i586" [bug SUSE40273] @@ -22024,16 +22095,16 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 09 2004 olh@suse.de - add patches.fixes/Call-populate_rootfs-later-in-boot2 call populate_rootfs before do_initcalls -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/rwsem-sleepers patches.fixes/rwsem-sleepers2 Be more careful about semaphore contention memory ordering. -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.drivers/pcnet32-drop-ltint.patch disalbe TxDone-intr inhibitor support (SUSE40202 - LTC7799) -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.arch/ppc64-slbie-hugepage [PATCH] ppc64: Use slbie, not slbia in hugepage code -* Sun May 09 2004 olh@suse.de +* Sat May 08 2004 olh@suse.de - add patches.fixes/ppc32.support.update new ibook g4, windtunnel fixes * Sat May 08 2004 olh@suse.de @@ -22279,7 +22350,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon May 03 2004 olh@suse.de - add patches.arch/ibm-ppc64-pseries-stackoverflow print stack trace in case of stackoverflow -* Mon May 03 2004 agruen@suse.de +* Sun May 02 2004 agruen@suse.de - Add POSIX message queue patches (disabled so far). - xfs: Fix qsort removal patch; update vmtruncate fix; add security namespace fix. @@ -22306,7 +22377,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun May 02 2004 olh@suse.de - add patches.arch/ibm-ppc64-signal-handler-args [PATCH] ppc64: fix incorrect signal handler argument -* Sun May 02 2004 olh@suse.de +* Sat May 01 2004 olh@suse.de - add patches.arch/ibm-ppc64-mark-exception-frames Mark exception frames, look for the marker in show_stack(). * Sat May 01 2004 garloff@suse.de @@ -22480,7 +22551,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Apr 29 2004 olh@suse.de - add patches.drivers/icadd-2.6-0.23.3.sysfs.patch provide sysfs data to create chardev /dev/ica via udev -* Thu Apr 29 2004 olh@suse.de +* Wed Apr 28 2004 olh@suse.de - dont hide /linuxrc on ppc64. setting ROOT_DEV to Ram0 was never correct. Read Documentation/initrd.txt @@ -22705,7 +22776,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 Fixing lkcd netdump (SUSE39396) * Mon Apr 26 2004 okir@suse.de - Merged patch from netdev to prevent oops when removing tulip module -* Mon Apr 26 2004 olh@suse.de +* Sun Apr 25 2004 olh@suse.de - disable hugetlb patches for ppc64, disable shm_use_hugepages has to be fixed first, leads to segfaults in insmod * Sat Apr 24 2004 agruen@suse.de @@ -22788,7 +22859,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - nfsacl: Fix another bug in xdr_xcode_array2, and clean it up. Remove some unnecessary xdr code. Return a more useful error code when an acl is too large. -* Thu Apr 22 2004 okir@suse.de +* Wed Apr 21 2004 okir@suse.de - Tentative fix for arp_solicit crash (SUSE38442) - Fix for failure in tahi nd#21 (SUSE38542) * Wed Apr 21 2004 olh@suse.de @@ -22863,7 +22934,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Wed Apr 21 2004 olh@suse.de - update patches.arch/ppc64.patch preserve cpus_allowed in collect_startpurr() (# SUSE39143 - LTC7339) -* Wed Apr 21 2004 olh@suse.de +* Tue Apr 20 2004 olh@suse.de - add patches.fixes/ibm-ppc64-procfs-dynamic-inodes [PATCH] Increase number of dynamic inodes in procfs * Tue Apr 20 2004 olh@suse.de @@ -23088,7 +23159,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 16 2004 olh@suse.de - add patches.arch/ibm-ppc64-dart-absolute_to_virt [PATCH] ppc64: Fix G5 build with DART (iommu) support -* Fri Apr 16 2004 agruen@suse.de +* Thu Apr 15 2004 agruen@suse.de - Remove a few 64-bit cleanliness warnings that lead to build failures. * Thu Apr 15 2004 olh@suse.de @@ -23242,7 +23313,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.fixes/anon_vma_prepares-locking: Fix locking for page faults in concurrent threads (andrea@suse.de). - fixes/ext3-infoleak: SUSE35212: fixes/ext3-infoleak, CAN-2004-0133. -* Wed Apr 07 2004 agruen@suse.de +* Tue Apr 06 2004 agruen@suse.de - SUSE38544: fixes/linux-2.6-flash-list-4gig-1: allows flashing of the JS20 firmware with the 2.6 kernel (ppc, meissner@suse.de). - SUSE37815: fixes/iommu-alloc-failed: pci_alloc_consistent should @@ -23288,7 +23359,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - remove HP ProLiant machines from ACPI blacklist (SUSE38427) * Tue Apr 06 2004 andrea@suse.de - backed out swap-writepage-sync-1 and applied real fix for SUSE38247 -* Tue Apr 06 2004 ak@suse.de +* Mon Apr 05 2004 ak@suse.de - change map_base to mapped_base (SUSE38434) * Mon Apr 05 2004 ak@suse.de - keep ACPI processor module loaded even without ACPI (SUSE37702) @@ -23341,10 +23412,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Apr 05 2004 ak@suse.de - add acpi_link_tolerant option to work around problems with VIA chipsets. Disabled by default for now. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - added obviously safe patches.suse/unmap_vmas-lat to provide lowlatency even with preempt disabled. -* Mon Apr 05 2004 andrea@suse.de +* Sun Apr 04 2004 andrea@suse.de - XFS vmtruncate fix, will fix bug SUSE37257 * Sun Apr 04 2004 agruen@suse.de - patches.fixes/sound-ati-ixp-fix: Fix the S/PDIF port on ATI IXP @@ -23435,13 +23506,13 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Fri Apr 02 2004 okir@suse.de - statfs should not return EOVERFLOW on 32bit systems if b_files or b_ffree is -1 (SUSE36400) -* Fri Apr 02 2004 agruen@suse.de +* Thu Apr 01 2004 agruen@suse.de - Fix a build dependency in lkcd (kerntypes.o needs compile.h). - Add missing PreReq entires in kernel-source.spec.in. - Use /etc/init.d instead of /etc/rc.d. -* Fri Apr 02 2004 olh@suse.de +* Thu Apr 01 2004 olh@suse.de - update icom driver to version 1.3.1 -* Fri Apr 02 2004 okir@suse.de +* Thu Apr 01 2004 okir@suse.de - patches.fixes/nfs-blocksize is superfluous, removed it * Thu Apr 01 2004 okir@suse.de - Starting the NFS server didn't work (SUSE37925) @@ -23516,12 +23587,12 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add reiserfs acl support for special files (jeffm@suse.de). * Wed Mar 31 2004 ak@suse.de - Add missing vmalloc.h include on x86-64 -* Wed Mar 31 2004 mason@suse.de +* Tue Mar 30 2004 mason@suse.de - lkcd update, disable IPF support until IBM can integrate and test the fujitsu patch - merge ppc64 support, leave them disabled in series.conf until the ppc folks can try things out and make sure it compiles -* Wed Mar 31 2004 agruen@suse.de +* Tue Mar 30 2004 agruen@suse.de - Don't artificially limit the number of ACL entries on ext[23]. * Tue Mar 30 2004 garloff@suse.de - Forward port patch to increase sense buffer size to 96 bytes. @@ -23663,7 +23734,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Enable powernow k8 acpi driver on x86-64 and i386 (SUSE36822) * Fri Mar 26 2004 agruen@suse.de - xfs cvs update. -* Fri Mar 26 2004 andrea@suse.de +* Thu Mar 25 2004 andrea@suse.de - Fixup one locking bit in the objrmap-core, more precisely backed out this below incorrect patch. This results in a microscalability optimization for munmap, and it fixes an smp @@ -23743,7 +23814,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Rediff numa-api. * Wed Mar 24 2004 schwab@suse.de - Enable KDB on ia64, off by default. -* Wed Mar 24 2004 ak@suse.de +* Tue Mar 23 2004 ak@suse.de - fix oops in numa api code (SUSE36806) * Tue Mar 23 2004 garloff@suse.de - Non executable stack for x86-64. @@ -23817,7 +23888,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Remove ILP32 patch. * Tue Mar 23 2004 olh@suse.de - update emulex fc driver to lpfcdriver-2.10c -* Tue Mar 23 2004 olh@suse.de +* Mon Mar 22 2004 olh@suse.de - update patches.suse/early_userspace-instead-of-linuxrc restore old simpler version of this patch * Mon Mar 22 2004 schwab@suse.de @@ -23867,7 +23938,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 upstream * Mon Mar 22 2004 ak@suse.de - fix DEBUG_INFO build on x86-64 again -* Mon Mar 22 2004 olh@suse.de +* Sun Mar 21 2004 olh@suse.de - update patches.drivers/firewire_ieee1394 rev 1193, Some host driver cleanups. * Sun Mar 21 2004 mason@suse.de @@ -23937,7 +24008,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Mar 20 2004 agruen@suse.de - SUSE36587: Remove qsort from xfs; it's in our kernel for nfsacl anyway. -* Sat Mar 20 2004 olh@suse.de +* Fri Mar 19 2004 olh@suse.de - readd patches.suse/suse.ppc32.console.autodetection * Fri Mar 19 2004 schwab@suse.de - Prevent GCC from clobbering r13. @@ -23962,7 +24033,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix reiserfs writepage for fsync vs data=ordered races - add O_DIRECT aio fixes from -mm - make fsaio really async (from Suparna) -* Fri Mar 19 2004 ak@suse.de +* Thu Mar 18 2004 ak@suse.de - Disable PM_TIMER on x86-64 * Thu Mar 18 2004 stepan@suse.de - update bootsplash to v3.1.5 @@ -24063,7 +24134,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add powernow k8 ACPI driver. * Wed Mar 17 2004 ak@suse.de - update to x86_64-2.6.5rc-1 -* Wed Mar 17 2004 olh@suse.de +* Tue Mar 16 2004 olh@suse.de - add patches.drivers/usb-eciadsl.patch make the eci adsl modem work with 2.6 add patches.fixes/ppc32-2.6.5-compile.patch @@ -24111,18 +24182,18 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Mar 16 2004 olh@suse.de - reenable patches.drivers/firewire_ieee1394 rev 1191, fixes some list corruption in ieee1394 core -* Tue Mar 16 2004 olh@suse.de +* Mon Mar 15 2004 olh@suse.de - add patches.fixes/alsa.patch, patches.fixes/ia64-dma.patch fix compile errors after dma_sync_for_device-cpu.patch more alsa updates preserve ABI in arch/s390/appldata/appldata_mem.c -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - dynamic-timeslice: Add patch to allow tuning of scheduling timeslices. (Port from 2.4.) -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - bio-unplug-bitmasks: Another unplugging fix: The bitmasks were confused. -* Tue Mar 16 2004 garloff@suse.de +* Mon Mar 15 2004 garloff@suse.de - fix-plugging-race: Add patch from axboe to fix a plugging race (SUSE36090). * Mon Mar 15 2004 schwab@suse.de @@ -24155,7 +24226,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Mon Mar 15 2004 agruen@suse.de - No longer add the cvs timestamp to packages: We now have it in `rpm -qi'. -* Mon Mar 15 2004 mason@suse.de +* Sun Mar 14 2004 mason@suse.de - make backing-dev-unplug.patch able to handle swap pages, add a few barriers for luck. * Sun Mar 14 2004 agruen@suse.de @@ -24315,7 +24386,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Read patches.drivers/xpnet-04-xpc. * Sat Mar 06 2004 ak@suse.de - Update x86-64 patchkit to x86_64-2.6.4rc2-1 -* Sat Mar 06 2004 olh@suse.de +* Fri Mar 05 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc2-20040305 ibmasm, xfs, lots of other fixes * Fri Mar 05 2004 mantel@suse.de @@ -24417,7 +24488,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 hard-linked trees, so this caused patched failures with patches that touched the defconfig files. The fix is to no longer modify the defconfig files; nobody needed this, anyway. -* Tue Mar 02 2004 agruen@suse.de +* Mon Mar 01 2004 agruen@suse.de - reiserfs: enable trusted xattrs iff the filesystem supports them, i.e., only enable them if the filesystem supports xattrs (Jeff Mahoney ). @@ -24444,7 +24515,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 created. * Mon Mar 01 2004 olh@suse.de - update to patches.fixes/linux-post-2.6.4rc1-20040301 -* Mon Mar 01 2004 schwab@suse.de +* Sun Feb 29 2004 schwab@suse.de - Fix stack usage on kernel thread creation. - Fix 64 bit DMA mapping problem with PCI cards on SN2. * Sun Feb 29 2004 agruen@suse.de @@ -24474,10 +24545,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sat Feb 28 2004 agruen@suse.de - Fix regression in reiserfs_mknod. - Another regparm fix. -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - device mapper update - snapshot<->fs locking patch -* Sat Feb 28 2004 mason@suse.de +* Fri Feb 27 2004 mason@suse.de - update aio-poll to the latest rev - add aio-read-immediate, allows short aio reads on pipe/socket - add aio-context-switch to keep the wakeups on worker threads @@ -24520,7 +24591,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 26 2004 agruen@suse.de - patches.fixes/ext23-no-ace-read-limit.diff: SUSE34623: Patch was accidentally calling ext2_xattr_get from ext3 -- ouch! -* Thu Feb 26 2004 mason@suse.de +* Wed Feb 25 2004 mason@suse.de - disable kerntypes patch - add netpoll for netconsole and lkcd dump driver - add lkcd for ia32 @@ -24559,7 +24630,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix suspend to disk (SUSE34476) * Tue Feb 24 2004 mantel@suse.de - fix checksum bug for multicast/broadcast packets on postrouting (SUSE34669) -* Tue Feb 24 2004 mason@suse.com +* Mon Feb 23 2004 mason@suse.com - reiserfs update, data=ordered and other fixes * Mon Feb 23 2004 okir@suse.de - updated patches.suse/usagi-ipv6-ndisc to fix neighbor cache @@ -24621,10 +24692,10 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fix IA32e patch for !SMP * Thu Feb 19 2004 olh@suse.de - build scsi as a module on pseries64 -* Thu Feb 19 2004 olh@suse.de +* Wed Feb 18 2004 olh@suse.de - add patches.drivers/drivers-net-pcnet32.patch many fixes for this driver (SUSE34509 - LTC4358) -* Thu Feb 19 2004 ak@suse.de +* Wed Feb 18 2004 ak@suse.de - Add support for IA32e to x86-64 - Enable Intel specific configure options in x86-64 config - Enable some missing config options (IPMI, SCSI logging etc.) @@ -24664,7 +24735,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Tue Feb 17 2004 kraxel@suse.de - update uml patch. - dropped some uml fixes merged upstream. -* Tue Feb 17 2004 olh@suse.de +* Mon Feb 16 2004 olh@suse.de - add patches.arch/ppc64.tce_init_pSeries.patch from 2.6.3 final * Mon Feb 16 2004 olh@suse.de @@ -24687,7 +24758,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Sun Feb 15 2004 agruen@suse.de - Minor cosmetic fixes in error handling paths in fs/xattr_acl.c and fs/nfs/xattr.c. -* Sat Feb 14 2004 olh@suse.de +* Fri Feb 13 2004 olh@suse.de - add patches.fixes/linux-post-2.6.3-rc2-20040213 64bit G5 support, add config/ppc64/pmac64 * Fri Feb 13 2004 mantel@suse.de @@ -24696,7 +24767,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - fixed the ndisc patch again * Fri Feb 13 2004 okir@suse.de - re-diffed and re-enabled usagi ndisc patch -* Fri Feb 13 2004 kkeil@suse.de +* Thu Feb 12 2004 kkeil@suse.de - Update ISDN to 2.6.3-rc2-mm1 version + this is a new port 2.4 -> 2.6 I4L code - enable SMP for AVM activ cards @@ -24719,7 +24790,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 * Thu Feb 12 2004 olh@suse.de - add patches.suse/kdb-common-inital_env print enough lines, dump bta in one go -* Thu Feb 12 2004 kraxel@suse.de +* Wed Feb 11 2004 kraxel@suse.de - uml fixes. * Wed Feb 11 2004 olh@suse.de - add patches.arch/suse-ppc32-pmac-rootdevice @@ -24754,7 +24825,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - enable CONFIG_PPP_MULTILINK (SUSE34363) * Mon Feb 09 2004 olh@suse.de - update to post 2.6.3-rc1 20040209 -* Sun Feb 08 2004 agruen@suse.de +* Sat Feb 07 2004 agruen@suse.de - patches.suse/xfs-dmapi-fix: Add code missing for 2.6 kernels. * Sat Feb 07 2004 schwab@suse.de - Fix ia64 build failures. @@ -24929,7 +25000,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 input fixes update patches.arch/ppc64.patch vio fixes -* Thu Jan 22 2004 olh@suse.de +* Wed Jan 21 2004 olh@suse.de - add patches.drivers/ibm-ipr-2.0.0.patch ibmsis replacement, older iseries systems do still need ibmsis * Wed Jan 21 2004 olh@suse.de @@ -25021,7 +25092,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 for install. - Install init/kerntypes.o instead of Kerntypes (with does not exist). -* Thu Jan 15 2004 kraxel@suse.de +* Wed Jan 14 2004 kraxel@suse.de - add video4linux driver updates. - update user-mode-linux patch - remove some uml patches (merged upstream). @@ -25178,7 +25249,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - patches.rpmify/{kbuild-readonly,kbuild-out-of-tree}: Allow out-of-tree modules against read-only kernel sources (see patches). -* Mon Dec 15 2003 olh@suse.de +* Sun Dec 14 2003 olh@suse.de - add patches.suse/suse-ppc64-ksymoops.calltrace.patch update calltrace format to make ksymoops happy add patches.suse/suse-ppc64-wchan64 @@ -25223,7 +25294,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 iseries pci support patches.drivers/usb-2.5 usb storage updates, ohci updates -* Wed Dec 10 2003 agruen@suse.de +* Tue Dec 09 2003 agruen@suse.de - Relax the configuration file check: Don't abort if options are only taken away, but no new options are added. * Tue Dec 09 2003 olh@suse.de @@ -25285,7 +25356,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - add patches.fixes/linux-2.6.0-test11-bk-latest update patches.arch/ppc64.patch Fix a number of irq affinity bugs -* Wed Dec 03 2003 schwab@suse.de +* Tue Dec 02 2003 schwab@suse.de - Add qla2xxx drivers. * Tue Dec 02 2003 agruen@suse.de - A fix in the xdr array encoding code (nfsacl). @@ -25395,7 +25466,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 autodetect serial console and update cmdline * Wed Nov 26 2003 kraxel@suse.de - added amd64 32bit signal handling fix (from ak). -* Wed Nov 26 2003 olh@suse.de +* Tue Nov 25 2003 olh@suse.de - add patches.suse/suse-ppc64-chrp-root-sda3 force sda3 if no root= specified * Tue Nov 25 2003 olh@suse.de @@ -25412,7 +25483,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - update to 2.6.0-test10 disable CONFIG_IP_PNP, was dead code anyway enable minix per default -* Mon Nov 24 2003 olh@suse.de +* Sun Nov 23 2003 olh@suse.de - add patches.suse/early_userspace-instead-of-linuxrc run /sbin/kinit if available, instead of linuxrc * Fri Nov 21 2003 olh@suse.de @@ -25484,7 +25555,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Merge to x86_64-2.6.0test9-5 * Tue Nov 11 2003 schwab@suse.de - Fix rounding error for blkdev reads [SUSE31902]. -* Tue Nov 11 2003 schwab@suse.de +* Mon Nov 10 2003 schwab@suse.de - Reenable serial console patch. * Fri Nov 07 2003 hare@suse.de - patches.suse/kerntypes: Fixed #define. @@ -25537,7 +25608,7 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 define Root_SDA3 before using it * Tue Oct 21 2003 ak@suse.de - Fix warning added by ppc64 patch -* Tue Oct 21 2003 schwab@suse.de +* Mon Oct 20 2003 schwab@suse.de - Fix numa init error. * Mon Oct 20 2003 schwab@suse.de - Update ia64 patches and configs. @@ -25640,14 +25711,14 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - updated ia64 patch. - commented merged and/or obsolete patches. - fixed some rejects. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Avoid repeating version. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Fix missing patches. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Update ia64 patch to 2.6.0-test4-ia64-030826. - Update ia64 configs. -* Thu Sep 04 2003 schwab@suse.de +* Wed Sep 03 2003 schwab@suse.de - Readd non-obsolete fix. * Wed Sep 03 2003 agruen@suse.de - patches.suse/acpi-dsdt-from-initrd: Overwrite the bios ACPI DSDT @@ -25781,5 +25852,5 @@ Source Timestamp: 2008-10-24 17:40:47 +0200 - Add some build fixes. * Wed May 14 2003 schwab@suse.de - Fix uses of head and tail. -* Fri May 09 2003 kraxel@suse.de +* Thu May 08 2003 kraxel@suse.de - initial release diff --git a/list-exported-symbols b/list-exported-symbols new file mode 100644 index 000000000..af2a94727 --- /dev/null +++ b/list-exported-symbols @@ -0,0 +1,57 @@ +#! /bin/sh + +# Generate a Module.symvers-like list of symbols a module exports. + +usage() { + echo "USAGE: ${0##*/} [-n name] objfile" >&2 + exit 1 +} + +options=`getopt -o n: -- "$@"` +[ $? -eq 0 ] || usage + +eval set -- "$options" +while :; do + case "$1" in + -n) + opt_n=$2 + shift + ;; + --) + shift + break + ;; + esac + shift +done + +[ $# -eq 1 ] || usage + +if [ -z "$opt_n" ]; then + opt_n=${1%.ko} + opt_n=${opt_n#*/kernel/} +fi + +objdump -t "$1" | awk ' +BEGIN { known_types["__ksymtab"] = "EXPORT_SYMBOL" + known_types["__ksymtab_unused"] = "EXPORT_UNUSED_SYMBOL" + known_types["__ksymtab_gpl"] = "EXPORT_SYMBOL_GPL" + known_types["__ksymtab_unused_gpl"] = "EXPORT_UNUSED_SYMBOL_GPL" + known_types["__ksymtab_gpl_future"] = "EXPORT_SYMBOL_GPL_FUTURE" + } + { if (NF < 3) + next + if (substr($0, index($0, " ") + 6, 1) == "d") + next # debug symbol + if (gsub(/^__crc_/, "", $NF)) + crcs[$NF] = gensub(/^00000000(.+)/, "\\1", "", $1) + else if (gsub(/^__ksymtab_/, "", $NF) && + ($(NF-2) in known_types)) + types[$NF] = known_types[$(NF-2)] + } +END { for (sym in types) { + crc = (sym in crcs ? crcs[sym] : "00000000") + print "0x" crc "\t" sym "\t" module "\t" types[sym] + } + } +' module="$opt_n" diff --git a/make-symsets b/make-symsets deleted file mode 100644 index 9caf00e10..000000000 --- a/make-symsets +++ /dev/null @@ -1,111 +0,0 @@ -#! /bin/bash - -unset LANG ${!LC_*} - -# Usage: make-symsets symsets.tar.gz [old-symsets.tar.gz] -# < symvers.gz -# -# symsets.tar.gz -# Create this symbol set tarball. -# -# old-symsets.tar.gz -# Reuse all possible symbol sets from this tarball. - -tarball=$1 -old_tarball=$2 - -# Classify all the symbols by the directory they live in -unset ${!class_*} -while read class ignore line; do - class=class_${class//[^a-zA-Z0-9_]/_} - eval "$class[\${#$class[@]}]=\"$line\"" - if [ $ignore -gt 0 ]; then - eval "ignore_$class=1" - fi -done < <( - awk ' - BEGIN { FS="\t" ; OFS="\t" } - { class=$3 - sub(/\/[^/]+$/, "", class) - ignore=sub(/.*=>/, "", $1) - print class, ignore, $0 - } - ' -) - -tmpdir=$(mktemp -t -d ${0##*/}.XXXXXX) -trap "rm -rf $tmpdir" EXIT - -basename=$(basename ${tarball:-.} .tar.gz) - -# Save all the new sets, computer and output their hashes -newdir=$tmpdir/new/$basename -mkdir -p $newdir -for class in ${!class_*} ; do - class=${class#class_} - eval "printf \"%s\\n\" \"\${class_$class[@]}\"" \ - | sort -k2 \ - > $newdir/tmp - set -- $(md5sum $newdir/tmp) ; set -- ${1:0:16} - mv $newdir/tmp $newdir/$class.$1 - #echo "Provides: kernel($class) = $1" -done - -shopt -s nullglob - -if [ -n "$old_tarball" ]; then - # Reuse all sets of symbols from the old tarball that are - # still the same. - old_basename=$(basename $old_tarball .tar.gz) - - mkdir -p $tmpdir/old - zcat $old_tarball \ - | tar xf - -C $tmpdir/old - set -- $tmpdir/old/* - olddir=$1 - if [ ! -d $olddir ]; then - echo "$old_tarball does not contain directory $old_basename" - exit 1 - fi - - for oldset in $olddir/* ; do - [ -e $newdir/${oldset#$olddir/} ] && continue - class=${oldset##*/} ; class=${class%.*} - set -- $newdir/$class.* - [ $# -eq 1 ] || continue - newset=$1 - # '*' doesn't occur in either file. - missing="$(join -t '*' -j 1 -v 1 <(sort "$oldset") <(sort "$newset"))" - if [ -z "$missing" ]; then - keep_oldset[${#keep_oldset[@]}]=$oldset - #echo "Provides: kernel($class) = ${oldset##*.} (old)" - else - set -- $(echo "$missing" | awk '{ print $2 "(" $1 ")" }') - ignore=ignore_class_$class - if [ -n "${!ignore}" ]; then - ignore="; ignoring" - else - ignore= - status=1 - fi - echo "No longer provided: kernel($class) = ${oldset##*.} (missing/changed: $@$ignore)" >&2 - fi - done - - if [ ${#keep_oldset[@]} -gt 0 ]; then - mv "${keep_oldset[@]}" $newdir/ - fi -else - echo "No longer provided: previous kernel(...) symbols that may still be" \ - "compatible" >&2 -fi - -# Store the generated sets in $tarball -tar cf - -C $tmpdir/new $basename \ -| gzip -9 \ -> $tarball \ -|| exit 1 - -exit $status - -# vim:shiftwidth=4 softtabstop=4 diff --git a/patches.addon.tar.bz2 b/patches.addon.tar.bz2 index e6886969b..187635fc4 100644 --- a/patches.addon.tar.bz2 +++ b/patches.addon.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcf2a5f061a1e08547bdb3d87d1fc6fe4239ddd8b80cf60fa589705feadd1b6d -size 128 +oid sha256:776773079e2384550a47de4f3290bf9214902c0713840dbc66f278ef3f0e538b +size 124 diff --git a/patches.apparmor.tar.bz2 b/patches.apparmor.tar.bz2 index da011be6b..b2b373b21 100644 --- a/patches.apparmor.tar.bz2 +++ b/patches.apparmor.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00b6af96e337832dd1ea734ce577cd29648d35100b0f9c7d9d029cad79c031f2 -size 59076 +oid sha256:1f842e9b1c002ad3b85598d3ff196a2b13da3fbfdcc798af4696884448883306 +size 58871 diff --git a/patches.arch.tar.bz2 b/patches.arch.tar.bz2 index 321d381f0..ccde1b3a9 100644 --- a/patches.arch.tar.bz2 +++ b/patches.arch.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:005223e6fb3828cf93650a351bc43269dea00a52b40ea086bf090fcd032b5f76 -size 201935 +oid sha256:1792daf9d2421f04dea17b3d989c5cfa6f6f295ae457f6440dec197e6a019960 +size 206168 diff --git a/patches.drivers.tar.bz2 b/patches.drivers.tar.bz2 index e8c794593..618ae3a59 100644 --- a/patches.drivers.tar.bz2 +++ b/patches.drivers.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d932c1d8141dfd3fafecd224bf1ff2995d9709c3390fa0407afba65ea11560c6 -size 1391875 +oid sha256:b21435e9db98990079d476428a39b1a81177b48e8e0da5085b2d57edfca62192 +size 1394707 diff --git a/patches.fixes.tar.bz2 b/patches.fixes.tar.bz2 index 9f7a3213e..48ee8c2e7 100644 --- a/patches.fixes.tar.bz2 +++ b/patches.fixes.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f0a308fabf4dec22f07d2b23bdbbb1e450ceac3573cb20117b4e9b56f14e344 -size 104245 +oid sha256:a4a69fe23edcff95f1a379ead1926146483c2254a0b51f6559a799f9a983d4a3 +size 104402 diff --git a/patches.kernel.org.tar.bz2 b/patches.kernel.org.tar.bz2 index 49c999499..39253d7af 100644 --- a/patches.kernel.org.tar.bz2 +++ b/patches.kernel.org.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62cd10cb0dc6282742c2fd530d5615e1d9b303fe8471cc36677b45a0a6f90482 -size 27792 +oid sha256:a5d652f32cf9b812ffba06564f265cdaaec0b57983b4756c14505710f4e0983d +size 27939 diff --git a/patches.rpmify.tar.bz2 b/patches.rpmify.tar.bz2 index e7aec0b29..309bfcc26 100644 --- a/patches.rpmify.tar.bz2 +++ b/patches.rpmify.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28e0397870af76280f57d3218a465df2f4bd5dc310548390eabbdc7d5248252b -size 1616 +oid sha256:2f41a715f97942579ffbe54175c368a86eee764b2ce2a88370d2bc6cb8dc55ca +size 1613 diff --git a/patches.rt.tar.bz2 b/patches.rt.tar.bz2 index 546c18c53..c3a9f8390 100644 --- a/patches.rt.tar.bz2 +++ b/patches.rt.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6a7876303336ac0a49b9cc933ee727f941b69542a5655349742bb8bf9a53cb6 -size 371717 +oid sha256:04d2bfc6b9c339e53727661c417aff04066deea2037fb50c834a9f706dafbc35 +size 370821 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index 12fc7f998..6961c7e10 100644 --- a/patches.suse.tar.bz2 +++ b/patches.suse.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e0f64fdb0c632b33a05472aebc8ab5a443fbd1d3e51c0fb32c07cfd521ef584 -size 1273633 +oid sha256:57792a56cd07a9c60b199e4c4a32fbbedc27b6b0641c0a2e13e3958ae2e6ff02 +size 1272838 diff --git a/patches.trace.tar.bz2 b/patches.trace.tar.bz2 index 6e6a572d3..71a664fb0 100644 --- a/patches.trace.tar.bz2 +++ b/patches.trace.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b46c749be31cd9be0d9ae9bd20ea084a836a8c5917847c836ee6dab51dc4430 -size 57800 +oid sha256:7049430063bedb4344f8fa7007b40e0a4db7939b0e1bbf3763e4fd5f6699a8ad +size 57840 diff --git a/patches.uml.tar.bz2 b/patches.uml.tar.bz2 index b04fcddf0..fdb96a7c0 100644 --- a/patches.uml.tar.bz2 +++ b/patches.uml.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cac1f98a8aa39f4f41d55e9cc551053c71be28f80a4c04c94104f7d17217035 -size 11055 +oid sha256:f06a71eabfc02bbdb249f64b53d4c91851b7287c759c40a88cfd64cd3d17cf12 +size 11029 diff --git a/patches.xen.tar.bz2 b/patches.xen.tar.bz2 index 6727f748f..f67c4a1da 100644 --- a/patches.xen.tar.bz2 +++ b/patches.xen.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ef647cc27f8881969ce18e8607a3149c0508f3b5308e29b8687b58b78ce89e1 -size 1468390 +oid sha256:15852f4a2bb03e01740ab998cf2d245358ce73d625fa905ce3fe430423dc7cd4 +size 1467563 diff --git a/series.conf b/series.conf index 0ced28b79..8c0627f90 100644 --- a/series.conf +++ b/series.conf @@ -30,7 +30,7 @@ patches.kernel.org/patch-2.6.27.1 patches.kernel.org/patch-2.6.27.1-2 patches.kernel.org/patch-2.6.27.2-3 - patches.kernel.org/patch-2.6.27.4-rc2 + patches.kernel.org/patch-2.6.27.3-4 ######################################################## # Build fixes that apply to the vanilla kernel too. @@ -247,6 +247,14 @@ patches.arch/s390-01-06-zfcp-cleanup-v2.patch patches.arch/s390-02-01-xpram.patch + patches.arch/s390-02-02-smp-sysdev.patch + patches.arch/s390-02-03-zfcp.patch + patches.arch/s390-02-04-qeth-mac.patch + patches.arch/s390-02-05-qeth-recovery.patch + patches.arch/s390-02-06-qeth-offset.patch + patches.arch/s390-02-07-qeth-ipv6check.patch + patches.arch/s390-02-08-qeth-panic.patch + patches.arch/s390-02-09-tape-lock.patch ######################################################## # VM/FS patches @@ -632,6 +640,10 @@ patches.drivers/sgi-uv-led patches.drivers/sgi-ioc4-request-submodules + # This one is more related to x2APIC patches, but adjusted by SGI to cleanly + # patch on-top of sgi-uv-led -> I don't do the extra work and keep it here + patches.arch/x86_uv_early_detect.patch + patches.fixes/cxgb3_fix_race_in_EEH # Add support for Montevina hardware; series mainlined 2.6.26 @@ -645,7 +657,7 @@ ######################################################## # Storage ######################################################## -+2.6.26-teheo patches.drivers/libata-add-waits-for-govault + patches.drivers/libata-add-waits-for-govault patches.drivers/libata-unlock-hpa-by-default patches.drivers/libata-prefer-over-ide @@ -787,6 +799,7 @@ ######################################################## patches.fixes/md-Allow-metadata_version-to-be-updated-for-externa.patch patches.fixes/md-Don-t-try-to-set-an-array-to-read-auto-if-it-i.patch + patches.kernel.org/touch_mnt_namespace-when-the-mount-flags-change.patch ########################################################## @@ -863,7 +876,6 @@ patches.suse/kdb-x86 patches.suse/kdb-ia64 patches.suse/kdb-serial-8250 - patches.fixes/kdb-kdump.diff ######################################################## # Other patches for debugging @@ -873,9 +885,13 @@ patches.suse/no-frame-pointer-select patches.arch/x86_64-unwind-annotations - # dump_after_notifier_table sysctl for Teradata - # and others (bnc#436678) + ######################################################## + # Kdump + ######################################################## + patches.fixes/kdb-kdump.diff + patches.fixes/kdb-oops-panic.diff patches.suse/kdump-dump_after_notifier.patch + patches.fixes/hpwdt-kdump.diff ######################################################## # cgroups diff --git a/split-into-symsets b/split-into-symsets new file mode 100644 index 000000000..dce64fce9 --- /dev/null +++ b/split-into-symsets @@ -0,0 +1,40 @@ +#! /bin/bash + +usage() { + echo "Usage: ${0##*/} {dir} < Module.symvers" + exit $1 +} + +[ $# -eq 1 ] || usage 1 +dir=$1 + +tmpdir=$(mktemp -dt ${0##*/}.XXXXXXXXXX) +trap "rm -rf $tmpdir" EXIT + +split_into_sets() { + local dir=$1 + + awk ' + { set = gensub(/\/[^\/]+$/, "", "", $3) + sets[set] = sets[set] $0 "\n" + } + END { + for (set in sets) { + filename = gensub(/\//, "_", "g", set) + printf "%s", sets[set] > dir "/" filename + } + } + ' dir="$dir" +} + +sort -k2 \ +| split_into_sets "$tmpdir" + +shopt -s nullglob +set -- $tmpdir/* +if [ $# -ne 0 ]; then + md5sum "$@" \ + | while read md5sum set; do + cp $set $dir/${set##*/}.${md5sum:0:16} + done +fi