diff --git a/config.conf b/config.conf index 4dfe987..7a63c63 100644 --- a/config.conf +++ b/config.conf @@ -11,9 +11,10 @@ +i386 i386/default +i386 i386/desktop +i386 i386/pae ++i386 -syms i386/vmi +i386 -syms i386/debug -+i386 i386/xen -+i386 -syms i386/ec2 +#+i386 i386/xen +#+i386 -syms i386/ec2 +i386 i386/vanilla +i386 -syms i386/trace @@ -24,8 +25,8 @@ +x86_64 x86_64/default +x86_64 x86_64/desktop -+x86_64 x86_64/xen -+x86_64 -syms x86_64/ec2 +#+x86_64 x86_64/xen +#+x86_64 -syms x86_64/ec2 +x86_64 -syms x86_64/debug +x86_64 x86_64/vanilla +x86_64 -syms x86_64/trace @@ -48,11 +49,14 @@ +ppc64 ppc64/default # G5 pSeries +ppc64 ppc64/ppc64 ++ppc64 -syms ppc64/trace +ppc64 -syms ppc64/debug # maybe the kernels above were patched to death? +ppc64 ppc64/vanilla +s390 s390/s390 ++s390 -syms s390/trace +s390 s390/vanilla +s390x s390x/default ++s390x -syms s390x/trace +s390x s390x/vanilla diff --git a/config.sh b/config.sh index 2107f31..0117f68 100644 --- a/config.sh +++ b/config.sh @@ -2,3 +2,6 @@ SRCVERSION=2.6.32 # variant of the kernel-source package, either empty or "-rt" VARIANT= +# buildservice projects to build the kernel against +OBS_PROJECT=openSUSE:Factory +IBS_PROJECT=SUSE:Factory:Head diff --git a/config.tar.bz2 b/config.tar.bz2 index 304777d..33bd7f8 100644 --- a/config.tar.bz2 +++ b/config.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37516ed486636f700047c0fc1bf6881ecbcbd0abe4adf35814914207499aceb3 -size 157027 +oid sha256:2df2119a8d5095308e9ab3c3d810826e25a10abb0a1572783b78bd0c71a54ea1 +size 161745 diff --git a/find-provides b/find-provides index f4822b5..e960598 100644 --- a/find-provides +++ b/find-provides @@ -5,11 +5,17 @@ filelist=$(mktemp -t ${0##*/}.XXXXXXXXXX) grep -v '/kernel/drivers/staging/.*\.ko$' >"$filelist" shopt -s nullglob +builddir=$1 +shift + # pretend that /boot/vmlinux-* is in the -base package and not in -devel if grep -q '/boot/System\.map\>' "$filelist"; then prefix=$(sed -rn 's:(.*)/boot/System\.map\>.*:\1:p; T; q' "$filelist") for f in "$prefix"/boot/vmlinux*; do echo "$f" >>"$filelist" + if test -e "$builddir/$(basename "$f").provides"; then + cat "$_" + fi done else perl -ni -e 'next if /\/boot\/vmlinux/ && !/\.debug$/; print' "$filelist" diff --git a/kernel-binary.spec.in b/kernel-binary.spec.in index 65c5c7d..b2036eb 100644 --- a/kernel-binary.spec.in +++ b/kernel-binary.spec.in @@ -92,8 +92,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -204,7 +206,7 @@ Obsoletes: ocfs2-kmp-%build_flavor Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -358,39 +360,44 @@ mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif - add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi @@ -398,7 +405,6 @@ add_vmlinux() %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else @@ -420,7 +426,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -433,7 +438,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -441,9 +448,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif @@ -506,8 +510,10 @@ if [ %CONFIG_MODULES = y ]; then fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -596,11 +602,6 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { @@ -608,13 +609,13 @@ add_dirs_to_filelist() { # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -631,19 +632,21 @@ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -652,7 +655,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -813,8 +816,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-debug.changes b/kernel-debug.changes index 7fe6a37..a35f85b 100644 --- a/kernel-debug.changes +++ b/kernel-debug.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-debug.spec b/kernel-debug.spec index 1fcea40..718f501 100644 --- a/kernel-debug.spec +++ b/kernel-debug.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-debug (Version 2.6.32) +# spec file for package kernel-debug (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor debug @@ -48,8 +48,8 @@ Name: kernel-debug Summary: A Debug Version of the Kernel -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -193,7 +195,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -321,45 +323,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -380,7 +386,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -393,7 +398,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -401,9 +408,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -454,8 +458,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -535,24 +541,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -567,17 +568,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -586,7 +589,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -759,9 +762,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-default.changes b/kernel-default.changes index 7fe6a37..a35f85b 100644 --- a/kernel-default.changes +++ b/kernel-default.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-default.spec b/kernel-default.spec index fe3d637..7e49923 100644 --- a/kernel-default.spec +++ b/kernel-default.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-default (Version 2.6.32) +# spec file for package kernel-default (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor default @@ -48,8 +48,8 @@ Name: kernel-default Summary: The Standard Kernel -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -209,7 +211,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -336,45 +338,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -395,7 +401,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -408,7 +413,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -416,9 +423,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -469,8 +473,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -550,24 +556,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -582,17 +583,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -601,7 +604,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -772,9 +775,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-desktop.changes b/kernel-desktop.changes index 7fe6a37..a35f85b 100644 --- a/kernel-desktop.changes +++ b/kernel-desktop.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-desktop.spec b/kernel-desktop.spec index 3e6ee69..2239a27 100644 --- a/kernel-desktop.spec +++ b/kernel-desktop.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-desktop (Version 2.6.32) +# spec file for package kernel-desktop (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor desktop @@ -48,8 +48,8 @@ Name: kernel-desktop Summary: Kernel optimized for the desktop -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -189,7 +191,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -327,45 +329,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -386,7 +392,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -399,7 +404,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -407,9 +414,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -460,8 +464,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -541,24 +547,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -573,17 +574,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -592,7 +595,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -783,9 +786,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-ec2.changes b/kernel-docs.changes similarity index 87% rename from kernel-ec2.changes rename to kernel-docs.changes index 7fe6a37..a35f85b 100644 --- a/kernel-ec2.changes +++ b/kernel-docs.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-docs.spec b/kernel-docs.spec new file mode 100644 index 0000000..b29da8d --- /dev/null +++ b/kernel-docs.spec @@ -0,0 +1,94 @@ +# +# spec file for package kernel-docs (Version 2.6.33) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-docs +BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel +BuildRequires: kernel-source = 2.6.33 +Url: http://www.kernel.org/ +License: GPLv2+ +Group: Documentation/Man +AutoReqProv: on +Version: 2.6.33 +Release: 1 +%if %using_buildservice +%else +%endif +Summary: Kernel Documentation +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Source: kernel-spec-macros + +%description +These are the PDF documents and man pages (section 9) built from +thecurrent kernel sources. + + + +%prep +cp -av /etc/texmf/web2c/texmf.cnf . +cat << EOF >> texmf.cnf +main_memory.pdfjadetex = 2500000 +hash_extra.pdfjadetex = 70000 +max_strings.pdfjadetex = 120000 +save_size.pdfjadetex = 10000 +EOF +%setup -T -c + +%build +# use texmf.cnf from local source +export TEXMFCNF=$RPM_BUILD_DIR +export LANG=en_US +make -C /usr/src/linux-%{version}-%{release_major} O=$PWD -k -i mandocs %{?jobs:-j%jobs} +make -C /usr/src/linux-%{version}-%{release_major} O=$PWD -k -i pdfdocs %{?jobs:-j%jobs} + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/%{_mandir}/man9 +# filter out obscure device drivers - they clutter up the rpm and don't add any real value +find Documentation/DocBook/ -name '*.9.gz' | +egrep -v 'man/(sis[69]|rio|fsl|struct_rio|RIO|mpc85|set_rx_mode|mdio_(read|write)|mii_ioctl|mca_|z8530|nand|sppp|piix|(read|write)_zs)' | +while read i ; do + cp $i $RPM_BUILD_ROOT/%{_mandir}/man9 +done +install -d $RPM_BUILD_ROOT/usr/share/doc/kernel +cp -a Documentation/DocBook/*.pdf $RPM_BUILD_ROOT/usr/share/doc/kernel || true +if [ -d Documentation/kdb ] ; then + for i in Documentation/kdb/*.m* ; do + k=`basename $i` + k=${k/man/9} + k=${k/mm/9} + cp $i $RPM_BUILD_ROOT/%{_mandir}/man9/$k + done +fi +ln -s /usr/share/man/man9/request_threaded_irq.9.gz $RPM_BUILD_ROOT/usr/share/man/man9/request_irq.9.gz +cp -a /usr/src/linux-%{version}-%{release_major}/{COPYING,CREDITS,MAINTAINERS,README,REPORTING-BUGS} . + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%doc COPYING CREDITS MAINTAINERS README REPORTING-BUGS +%{_mandir}/man9/* +%docdir /usr/share/doc/kernel +/usr/share/doc/kernel + +%changelog diff --git a/kernel-docs.spec.in b/kernel-docs.spec.in new file mode 100644 index 0000000..aef3654 --- /dev/null +++ b/kernel-docs.spec.in @@ -0,0 +1,97 @@ +# +# spec file for package kernel-docs@VARIANT@ (Version @RPMVERSION@) +# +# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +%include %_sourcedir/kernel-spec-macros + +Name: kernel-docs +BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel +BuildRequires: kernel-source = @RPMVERSION@ +Url: http://www.kernel.org/ +License: GPL v2 or later +Group: Documentation/Man +AutoReqProv: on +Version: @RPMVERSION@ +%if %using_buildservice +Release: @RELEASE_PREFIX@ +%else +Release: @RELEASE_PREFIX@0 +%endif +Summary: Kernel Documentation +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Source: kernel-spec-macros + +%description +These are the PDF documents and man pages (section 9) built from +thecurrent kernel sources. + + + +%prep +cp -av /etc/texmf/web2c/texmf.cnf . +cat << EOF >> texmf.cnf +main_memory.pdfjadetex = 2500000 +hash_extra.pdfjadetex = 70000 +max_strings.pdfjadetex = 120000 +save_size.pdfjadetex = 10000 +EOF +%setup -T -c + +%build +# use texmf.cnf from local source +export TEXMFCNF=$RPM_BUILD_DIR +export LANG=en_US +make -C /usr/src/linux-%{version}-%{release_major} O=$PWD -k -i mandocs %{?jobs:-j%jobs} +make -C /usr/src/linux-%{version}-%{release_major} O=$PWD -k -i pdfdocs %{?jobs:-j%jobs} + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/%{_mandir}/man9 +# filter out obscure device drivers - they clutter up the rpm and don't add any real value +find Documentation/DocBook/ -name '*.9.gz' | +egrep -v 'man/(sis[69]|rio|fsl|struct_rio|RIO|mpc85|set_rx_mode|mdio_(read|write)|mii_ioctl|mca_|z8530|nand|sppp|piix|(read|write)_zs)' | +while read i ; do + cp $i $RPM_BUILD_ROOT/%{_mandir}/man9 +done +install -d $RPM_BUILD_ROOT/usr/share/doc/kernel +cp -a Documentation/DocBook/*.pdf $RPM_BUILD_ROOT/usr/share/doc/kernel || true +if [ -d Documentation/kdb ] ; then + for i in Documentation/kdb/*.m* ; do + k=`basename $i` + k=${k/man/9} + k=${k/mm/9} + cp $i $RPM_BUILD_ROOT/%{_mandir}/man9/$k + done +fi + +ln -s /usr/share/man/man9/request_threaded_irq.9.gz $RPM_BUILD_ROOT/usr/share/man/man9/request_irq.9.gz + +cp -a /usr/src/linux-%{version}-%{release_major}/{COPYING,CREDITS,MAINTAINERS,README,REPORTING-BUGS} . + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%doc COPYING CREDITS MAINTAINERS README REPORTING-BUGS +%{_mandir}/man9/* +%docdir /usr/share/doc/kernel +/usr/share/doc/kernel + +%changelog diff --git a/kernel-pae.changes b/kernel-pae.changes index 7fe6a37..a35f85b 100644 --- a/kernel-pae.changes +++ b/kernel-pae.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-pae.spec b/kernel-pae.spec index d6c5ac4..3cf1579 100644 --- a/kernel-pae.spec +++ b/kernel-pae.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-pae (Version 2.6.32) +# spec file for package kernel-pae (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor pae @@ -48,8 +48,8 @@ Name: kernel-pae Summary: Kernel with PAE Support -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -193,7 +195,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -327,45 +329,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -386,7 +392,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -399,7 +404,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -407,9 +414,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -460,8 +464,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -541,24 +547,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -573,17 +574,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -592,7 +595,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -777,9 +780,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-ppc64.changes b/kernel-ppc64.changes index 7fe6a37..a35f85b 100644 --- a/kernel-ppc64.changes +++ b/kernel-ppc64.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-ppc64.spec b/kernel-ppc64.spec index 59ca1b5..8804107 100644 --- a/kernel-ppc64.spec +++ b/kernel-ppc64.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-ppc64 (Version 2.6.32) +# spec file for package kernel-ppc64 (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor ppc64 @@ -48,8 +48,8 @@ Name: kernel-ppc64 Summary: Kernel for ppc64 Systems -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -197,7 +199,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -331,45 +333,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -390,7 +396,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -403,7 +408,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -411,9 +418,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -464,8 +468,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -545,24 +551,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -577,17 +578,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -596,7 +599,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -781,9 +784,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-ps3.changes b/kernel-ps3.changes index 7fe6a37..a35f85b 100644 --- a/kernel-ps3.changes +++ b/kernel-ps3.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-ps3.spec b/kernel-ps3.spec index 1ed4c16..779deee 100644 --- a/kernel-ps3.spec +++ b/kernel-ps3.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-ps3 (Version 2.6.32) +# spec file for package kernel-ps3 (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor ps3 @@ -48,8 +48,8 @@ Name: kernel-ps3 Summary: kernel for ps3 bootloader -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -189,7 +191,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -319,45 +321,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -378,7 +384,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -391,7 +396,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -399,9 +406,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -452,8 +456,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -533,24 +539,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -565,17 +566,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -584,7 +587,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -761,9 +764,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-s390.changes b/kernel-s390.changes index 7fe6a37..a35f85b 100644 --- a/kernel-s390.changes +++ b/kernel-s390.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-s390.spec b/kernel-s390.spec index a42328e..727f823 100644 --- a/kernel-s390.spec +++ b/kernel-s390.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-s390 (Version 2.6.32) +# spec file for package kernel-s390 (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor s390 @@ -48,8 +48,8 @@ Name: kernel-s390 Summary: The Standard Kernel -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -193,7 +195,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -320,45 +322,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -379,7 +385,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -392,7 +397,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -400,9 +407,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -453,8 +457,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -534,24 +540,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -566,17 +567,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -585,7 +588,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -756,9 +759,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-source.changes b/kernel-source.changes index 7fe6a37..a35f85b 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-source.spec b/kernel-source.spec index d972102..2a9ed70 100644 --- a/kernel-source.spec +++ b/kernel-source.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-source (Version 2.6.32) +# spec file for package kernel-source (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ # icecream 0 %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define src_install_dir usr/src/linux-%kernelrelease%variant @@ -28,8 +28,8 @@ Name: kernel-source Summary: The Linux Kernel Sources -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -73,12 +73,13 @@ Source52: kernel-source%variant.changes Source53: kernel-source.spec.in Source54: kernel-binary.spec.in Source55: kernel-syms.spec.in -Source56: config.sh -Source57: compute-PATCHVERSION.sh -Source58: old-packages.conf -Source59: arch-symbols -Source60: package-descriptions -Source61: kernel-spec-macros +Source56: kernel-docs.spec.in +Source60: config.sh +Source61: compute-PATCHVERSION.sh +Source62: old-packages.conf +Source63: arch-symbols +Source64: package-descriptions +Source65: kernel-spec-macros Source100: config.tar.bz2 Source101: patches.arch.tar.bz2 Source102: patches.drivers.tar.bz2 diff --git a/kernel-source.spec.in b/kernel-source.spec.in index 25a5de6..5b79737 100644 --- a/kernel-source.spec.in +++ b/kernel-source.spec.in @@ -76,12 +76,13 @@ Source52: kernel-source%variant.changes Source53: kernel-source.spec.in Source54: kernel-binary.spec.in Source55: kernel-syms.spec.in -Source56: config.sh -Source57: compute-PATCHVERSION.sh -Source58: old-packages.conf -Source59: arch-symbols -Source60: package-descriptions -Source61: kernel-spec-macros +Source56: kernel-docs.spec.in +Source60: config.sh +Source61: compute-PATCHVERSION.sh +Source62: old-packages.conf +Source63: arch-symbols +Source64: package-descriptions +Source65: kernel-spec-macros Source100: config.tar.bz2 Source101: patches.arch.tar.bz2 Source102: patches.drivers.tar.bz2 diff --git a/kernel-syms.changes b/kernel-syms.changes index 7fe6a37..a35f85b 100644 --- a/kernel-syms.changes +++ b/kernel-syms.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-syms.spec b/kernel-syms.spec index 2a6d8a5..9cf7597 100644 --- a/kernel-syms.spec +++ b/kernel-syms.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-syms (Version 2.6.32) +# spec file for package kernel-syms (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,8 +22,8 @@ Name: kernel-syms Summary: Kernel Symbol Versions (modversions) -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %define kernel_source_release %(LC_ALL=C rpm -q kernel-source%variant-%version --qf "%{RELEASE}" | grep -v 'not installed' || echo 0) @@ -48,9 +48,6 @@ Requires: kernel-ppc64-devel = %version-%source_rel %ifarch s390 Requires: kernel-s390-devel = %version-%source_rel %endif -%ifarch %ix86 x86_64 -Requires: kernel-xen-devel = %version-%source_rel -%endif Provides: multiversion(kernel) Source: README.KSYMS Requires: kernel-source%variant = %version-%source_rel diff --git a/kernel-trace.changes b/kernel-trace.changes index 7fe6a37..a35f85b 100644 --- a/kernel-trace.changes +++ b/kernel-trace.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-trace.spec b/kernel-trace.spec index 68f54fe..634d401 100644 --- a/kernel-trace.spec +++ b/kernel-trace.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-trace (Version 2.6.32) +# spec file for package kernel-trace (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor trace @@ -48,8 +48,8 @@ Name: kernel-trace Summary: The Realtime Linux Kernel -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -113,6 +115,18 @@ Conflicts: lvm2 < 2.02.33 Conflicts: libc.so.6()(64bit) %endif Provides: kernel = %version-%source_rel +%ifarch ppc64 +Provides: kernel-kdump +Obsoletes: kernel-kdump +%endif +%ifarch s390 +Provides: kernel-32bit +Obsoletes: kernel-32bit +%endif +%ifarch s390x +Provides: kernel-64bit +Obsoletes: kernel-64bit +%endif Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 Source10: preun.sh Source11: postun.sh @@ -145,7 +159,7 @@ Source112: patches.trace.tar.bz2 Source113: patches.kabi.tar.bz2 Source120: kabi.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build -ExclusiveArch: %ix86 ia64 x86_64 +ExclusiveArch: %ix86 ia64 ppc64 s390 s390x x86_64 # These files are found in the kernel-source package: NoSource: 0 NoSource: 100 @@ -189,7 +203,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -316,45 +330,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -375,7 +393,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -388,7 +405,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -396,9 +415,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -449,8 +465,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -530,24 +548,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -562,17 +575,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -581,7 +596,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -752,9 +767,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-vanilla.changes b/kernel-vanilla.changes index 7fe6a37..a35f85b 100644 --- a/kernel-vanilla.changes +++ b/kernel-vanilla.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-vanilla.spec b/kernel-vanilla.spec index 727a101..148725c 100644 --- a/kernel-vanilla.spec +++ b/kernel-vanilla.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-vanilla (Version 2.6.32) +# spec file for package kernel-vanilla (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros %define build_flavor vanilla @@ -48,8 +48,8 @@ Name: kernel-vanilla Summary: The Standard Kernel - without any SUSE patches -Version: 2.6.32 -Release: 3 +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -197,7 +199,7 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 @@ -324,45 +326,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -383,7 +389,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -396,7 +401,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -404,9 +411,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -457,8 +461,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -538,24 +544,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -570,17 +571,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -589,7 +592,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -760,9 +763,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-xen.changes b/kernel-vmi.changes similarity index 87% rename from kernel-xen.changes rename to kernel-vmi.changes index 7fe6a37..a35f85b 100644 --- a/kernel-xen.changes +++ b/kernel-vmi.changes @@ -1,3 +1,2213 @@ +------------------------------------------------------------------- +Wed Jan 27 14:55:29 CET 2010 - jkosina@suse.cz + +- patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch: + pci: fix nested spinlock hang in aer_inject (bnc#573578). + +------------------------------------------------------------------- +Wed Jan 27 14:34:07 CET 2010 - mmarek@suse.cz + +- Update config files: disable generic_serial users. +- patches.drivers/reenable-generic_serial: Delete. +- rpm/generic_serial-blacklist: Delete (bnc#569676). + +------------------------------------------------------------------- +Wed Jan 27 12:57:31 CET 2010 - jengelh@medozas.de + +- remove patches.suse/netfilter-ipv4options [bnc#490142] + +------------------------------------------------------------------- +Wed Jan 27 00:14:42 CET 2010 - jeffm@suse.com + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh. + +------------------------------------------------------------------- +Tue Jan 26 07:00:33 CET 2010 - knikanth@suse.de + +- supported.conf: Fix misspelt dm-region-hash and mark it supported + correctly (bnc#565962) + +------------------------------------------------------------------- +Mon Jan 25 21:55:49 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.6 + - security fixes + - bugfixes + - obsoletes: + - patches.drivers/8250_pnp-wacom-add + - patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch + - patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch + - patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch + +------------------------------------------------------------------- +Mon Jan 25 20:43:56 CET 2010 - jeffm@suse.com + +- supported.conf: Added sparse_keymap (eeepc_laptop depends on it) + +------------------------------------------------------------------- +Mon Jan 25 20:07:23 CET 2010 - npiggin@suse.de + +- patches.suse/slab-handle-memoryless-nodes-v2a.patch: slab - + handle memoryless nodes V2a (bnc#436025, bnc#570492). + +------------------------------------------------------------------- +Mon Jan 25 17:54:26 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc5. + - Eliminated 2 patches. + +------------------------------------------------------------------- +Mon Jan 25 16:46:19 CET 2010 - trenn@suse.de + +- Update config files. +- patches.arch/x86_mce_intel_decode_physical_address.patch: x86, + mce: Xeon75xx specific interface to get corrected memory error + information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch: + x86, mce: Xeon75xx specific interface to get corrected memory + error information (bnc#573380, fate#307738). +- patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch: + x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + (bnc#573380, fate#307738). +- patches.xen/xen3-auto-arch-x86.diff: Refresh. + +------------------------------------------------------------------- +Mon Jan 25 14:13:08 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk: + ALSA: hda - Add support for Toshiba Satellite M300 + (bnc#492233,bnc#565904). +- patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix: ALSA: + hda - Change headphone pin control with master volume on cx5051 + (bnc#573050). + +------------------------------------------------------------------- +Mon Jan 25 12:30:14 CET 2010 - trenn@suse.de + +- patches.arch/x86_enable_tsc_sync_check_again.patch: x86: + Reenable TSC sync check at boot, even with NONSTOP_TSC + (bnc#573379). + +------------------------------------------------------------------- +Mon Jan 25 12:22:55 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch: + x86: Set hotpluggable nodes in nodes_possible_map (bnc#567216). +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: Delete. + +------------------------------------------------------------------- +Mon Jan 25 11:45:39 CET 2010 - trenn@suse.de + +- supported.conf: + Add mce-inject and hwpoison-inject so that Intel can easier test + this. As these are debug drivers, they might get reverted from + support.conf again if kernel-extra package gets fixed for SLES, + only seem to exist for SLED because "NCC is not yet working for SP1". + (bnc#572552). + +------------------------------------------------------------------- +Sat Jan 23 02:54:31 CET 2010 - bphilips@suse.de + +- patches.drivers/tg3-updates-from-f4188d-to-ba5b0bf.patch: tg3: + updates from f4188d to ba5b0bf (bnc#573237). + +------------------------------------------------------------------- +Sat Jan 23 01:57:20 CET 2010 - rjw@suse.de + +- patches.arch/x86-irq-check-move_in_progress-before-freeing-the-vector-mapping.patch: + x86, irq: Check move_in_progress before freeing the vector + mapping (bnc#558247). + +------------------------------------------------------------------- +Sat Jan 23 01:36:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-apic-use-logical-flat-for-systems-with-8-or-fewer-logical-cpus.patch: + x86, apic: use logical flat for systems with <= 8 logical cpus + (bnc#567510). +- patches.arch/x86-revert-apic-Use-logical-flat-on-intel-with-8-or-fewer-logical-cpus.patch: + x86: Revert "apic: Use logical flat on intel with <= 8 logical + cpus" (bnc#567510). + +------------------------------------------------------------------- +Sat Jan 23 00:52:57 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.5: + - security fixes + - bug fixes + - obsoletes: + - patches.drivers/alsa-sp1-hda-54-alc861-capture-fix + - patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard + - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + - patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch + +------------------------------------------------------------------- +Fri Jan 22 21:11:54 CET 2010 - tonyj@suse.de + +- Update config files: drop UTRACE from default s390 configs + as per communication from Ihno. + +------------------------------------------------------------------- +Fri Jan 22 19:48:25 CET 2010 - gregkh@suse.de + +- patches.kernel.org/x86-msr-cpuid-register-enough-minors-for-the-msr-and-cpuid-drivers.patch: + x86, msr/cpuid: Register enough minors for the MSR and CPUID + drivers (bnc#572720). + +------------------------------------------------------------------- +Fri Jan 22 18:54:28 CET 2010 - gregkh@suse.de + +- patches.kernel.org/scsi-enclosure-fix-oops-while-iterating-enclosure_status-array.patch: + SCSI: enclosure: fix oops while iterating enclosure_status array + (bnc#572818). +- patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array: + Delete. + +------------------------------------------------------------------- +Fri Jan 22 15:50:12 CET 2010 - duwe@suse.de + +- Update config files. +- patches.arch/ppc-extended_h_cede-update-to-mainline: Incremental + patch set to sync H_CEDE with actual mainline (bnc#550447, + FATE#307059). + +------------------------------------------------------------------- +Fri Jan 22 15:30:21 CET 2010 - trenn@suse.de + +- Update config files. + Add DMAR to -trace flavor -> get in sync with -default + +------------------------------------------------------------------- +Fri Jan 22 09:17:21 CET 2010 - hare@suse.de + +- patches.fixes/qla2xxx-restore-pci-state-after-eeh-recovery: + Re-save PCI state after EEH recovery (bnc#570233). + +------------------------------------------------------------------- +Fri Jan 22 07:38:23 CET 2010 - jjolly@suse.de + +- patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch: + zfcp: introduce BSG timeout callback (BNC#572659). +- patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch: + zfcp: set HW timeout requested by BSG request (BNC#572659). + +------------------------------------------------------------------- +Fri Jan 22 03:20:49 CET 2010 - bphilips@suse.de + +- patches.drivers/netxen-8f9b3f-to-c651a8.patch: netxen: 8f9b3f + to c651a8 (bnc#572832). + +------------------------------------------------------------------- +Fri Jan 22 02:39:54 CET 2010 - mfasheh@suse.com + +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh to + newest version of patch. + +------------------------------------------------------------------- +Thu Jan 21 20:22:46 CET 2010 - astarikovskiy@suse.de + +- supported.conf: added power_meter driver (FATE #306959). + +------------------------------------------------------------------- +Thu Jan 21 18:16:54 CET 2010 - tonyj@suse.de + +- config.conf: add -trace flavor for s390* at Ihno's request +- Add more tracers to existing ppc64 trace config at IBM request + Both related to FATE# 307051. +- patches.trace/ftrace-framepointer.diff: Delete. + +------------------------------------------------------------------- +Thu Jan 21 14:41:29 CET 2010 - hare@suse.de + +- patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout: + scsi_transport_fc: Allow LLD to reset FC BSG timeout + (bnc#572658). + +------------------------------------------------------------------- +Thu Jan 21 13:13:53 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-privcmd-mmap-batch-clear: privcmd: mmapbatch-v2 + fixes. + +------------------------------------------------------------------- +Thu Jan 21 09:08:08 CET 2010 - hare@suse.de + +- patches.drivers/lpfc-8.3.5-update: lpfc update to 8.3.5 + (bnc#572427). +- patches.drivers/lpfc-8.3.5.3-update: lpfc driver update to + 8.3.5.3 (bnc#572427). + +------------------------------------------------------------------- +Thu Jan 21 09:04:37 CET 2010 - hare@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Update headers for series2git. +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Update headers for series2git. + +------------------------------------------------------------------- +Wed Jan 20 18:23:18 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. More updates and + clean-up by Egbert (bnc#570082) + +------------------------------------------------------------------- +Wed Jan 20 16:30:38 CET 2010 - jkosina@suse.cz + +- patches.drivers/add-support-for-intel-cougar-point-chipset.patch: + Intel Cougar Point PCH Support (FATE#308854 bnc#565845). + +------------------------------------------------------------------- +Wed Jan 20 15:07:59 CET 2010 - jslaby@suse.de + +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + Refresh. + (change firmwares in makefile) + +------------------------------------------------------------------- +Wed Jan 20 13:55:16 CET 2010 - jslaby@suse.de + +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: Refresh. +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: Refresh. + +------------------------------------------------------------------- +Wed Jan 20 12:10:03 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.4 and c/s 984. +- Update Xen config files. + +------------------------------------------------------------------- +Wed Jan 20 08:19:53 CET 2010 - bphilips@suse.de + +- patches.drivers/bnx2i-backport-from-v2.6.32-to-45ca38e.patch: + bnx2i: Backport from v2.6.32 to 45ca38e (bnc#564640). +- patches.drivers/bnx2x-backports-v2.6.32-to-af901ca.patch: + bnx2x: backports v2.6.32 to af901ca (bnc#564638). +- patches.drivers/cnic-backport-from-v2.6.32-4e9c4f.patch: cnic: + backport from v2.6.32-4e9c4f (bnc#564640). + +------------------------------------------------------------------- +Wed Jan 20 00:08:36 CET 2010 - gregkh@suse.de + +- Update config files. 2.6.32.4 changed one of them. + +------------------------------------------------------------------- +Tue Jan 19 23:40:51 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fixed the text area + calculation, and added the upscaling (bnc#570082). + +------------------------------------------------------------------- +Tue Jan 19 21:57:59 CET 2010 - jeffm@suse.com + +- Updated to 2.6.33-rc4-git7. + - Eliminated 4 patches. + +------------------------------------------------------------------- +Tue Jan 19 18:39:59 CET 2010 - gregkh@suse.de + +- Patch refresh for fuzz due to upstream -stable additions. + +------------------------------------------------------------------- +Tue Jan 19 18:35:44 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.4 + - security fixes + - bug fixes + - obsoletes: + - patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y + - patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix + - patches.fixes/audit_untag_chunk.patch + - patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch + - patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1 + +------------------------------------------------------------------- +Tue Jan 19 18:08:33 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix: ALSA: hda - + Fix parsing pin node 0x21 on ALC259 (bnc#571879). +- patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix: ALSA: hda - + Turn on EAPD only if available for Realtek codecs (bnc#571879). + +------------------------------------------------------------------- +Tue Jan 19 18:01:58 CET 2010 - tiwai@suse.de + +- patches.suse/bootsplash-scaler: Refresh. Fix the hang-up with + resolution changes (bnc#570082) + +------------------------------------------------------------------- +Tue Jan 19 14:36:48 CET 2010 - jkosina@suse.cz + +- supported.conf: added aesni-intel (bnc#566618 FATE#304209). + +------------------------------------------------------------------- +Tue Jan 19 14:21:10 CET 2010 - jkosina@suse.cz + +- Update config files: set CONFIG_CRYPTO_HMAC=y to avoid + regression from SLE11 (bnc#571501). + +------------------------------------------------------------------- +Tue Jan 19 13:32:02 CET 2010 - jack@suse.de + +- patches.fixes/reiserfs-truncate-blocks-not-used-by-a-write.patch: + reiserfs: truncate blocks not used by a write (bnc#483375). + +------------------------------------------------------------------- +Mon Jan 18 22:34:50 CET 2010 - jeffm@suse.de + +- patches.suse/smtnice-disable: Delete (obsolete). + +------------------------------------------------------------------- +Mon Jan 18 16:22:29 CET 2010 - jeffm@suse.com + +- Disabled custom ACPI table loading from initramfs again. + +------------------------------------------------------------------- +Mon Jan 18 16:22:08 CET 2010 - jeffm@suse.com + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh. + +------------------------------------------------------------------- +Mon Jan 18 14:59:22 CET 2010 - trenn@suse.de + +- patches.arch/x86_node_hotplug_parse_srat_fix.patch: + x86/mm/srat_64.c: nodes_parsed should include all nodes detected + by ACPI (bnc#567140). + +------------------------------------------------------------------- +Mon Jan 18 09:47:31 CET 2010 - hare@suse.de + +- patches.fixes/aic79xx-null-scb-in-nonpkt-busfree: aic79xx: check + for non-NULL scb in ahd_handle_nonpkt_busfree (bnc#542568). + +------------------------------------------------------------------- +Mon Jan 18 00:35:36 CET 2010 - nfbrown@suse.de + +- patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch: + Refresh to fix 60 second delay. (bnc#568271) + +------------------------------------------------------------------- +Sat Jan 16 02:05:38 CET 2010 - tonyj@suse.de + +- patches.fixes/audit_untag_chunk.patch: fix braindamage in + audit_tree.c untag_chunk() (bnc#556282). + +------------------------------------------------------------------- +Sat Jan 16 01:44:42 CET 2010 - rjw@suse.de + +- patches.xen/xen-x86-rename-display_cacheinfo-to-cpu_detect_cache_sizes.patch: + x86: Rename display_cacheinfo() to cpu_detect_cache_sizes(). + +------------------------------------------------------------------- +Fri Jan 15 21:42:09 CET 2010 - gregkh@suse.de + +- Update config files. +- patches.drivers/vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch: + vmw_pvscsi: SCSI driver for VMware's virtual HBA. + +------------------------------------------------------------------- +Fri Jan 15 20:54:10 CET 2010 - jeffm@suse.com + +- patches.fixes/hid-add-device-ids-for-new-model-of-apple-wireless-keyboard: + HID: add device IDs for new model of Apple Wireless Keyboard + (bnc#568231). + +------------------------------------------------------------------- +Fri Jan 15 13:47:33 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 13:46:38 CET 2010 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01.01.11.1-k8-update: qla2xxx + driver update to 8.03.01.01.11.1-k8 (bnc#560415). +- patches.drivers/qla2xxx-8.03.01.02.11.1-k8-update: qla2xxx + driver update to 8.03.01.02.11.1-k8 (bnc#570233). +- patches.drivers/lpfc-add-raywire-id: Delete. +- patches.drivers/qla2xxx-8.03.01-k7-update: Delete. + +------------------------------------------------------------------- +Fri Jan 15 09:41:39 CET 2010 - trenn@suse.de + +- patches.suse/kdb_dont_touch_i8042_early.patch: Avoid early + hang when i8042 controller is missing (bnc#528811). + +------------------------------------------------------------------- +Fri Jan 15 03:56:15 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:55:52 CET 2010 - jeffm@suse.com + +- patches.suse/reiser4-sync_inodes: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:39:29 CET 2010 - jeffm@suse.com + +- patches.fixes/remount-no-shrink-dcache: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:22:19 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 03:21:54 CET 2010 - jeffm@suse.com + +- patches.suse/smtnice-disable: Updated to 2.6.33. + +------------------------------------------------------------------- +Fri Jan 15 03:19:18 CET 2010 - jeffm@suse.com + +- patches.arch/s390-08-02-zfcp-gpn-align-fix.diff: Delete (obsolete). + +------------------------------------------------------------------- +Fri Jan 15 00:25:16 CET 2010 - mfasheh@suse.com + +- patches.fixes/Ocfs2-Let-ocfs2-support-fiemap-for-symlink-and-fast-.patch: + Ocfs2: Let ocfs2 support fiemap for symlink and fast symlink.. +- patches.fixes/Ocfs2-Should-ocfs2-support-fiemap-for-S_IFDIR-inode.patch: + Ocfs2: Should ocfs2 support fiemap for S_IFDIR inode?. +- patches.fixes/ocfs-stop-using-do_sync_mapping_range.patch: + ocfs: stop using do_sync_mapping_range. +- patches.fixes/ocfs2-Add-reflinked-file-s-inode-to-inode-hash-earil.patch: + ocfs2: Add reflinked file's inode to inode hash eariler.. +- patches.fixes/ocfs2-Find-proper-end-cpos-for-a-leaf-refcount-block.patch: + ocfs2: Find proper end cpos for a leaf refcount block.. +- patches.fixes/ocfs2-Set-i_nlink-properly-during-reflink.patch: + ocfs2: Set i_nlink properly during reflink.. +- patches.fixes/ocfs2-always-include-acl-support.patch: ocfs2: + Always include ACL support. +- patches.fixes/ocfs2-cluster-Make-fence-method-configurable-v2.patch: + ocfs2/cluster: Make fence method configurable - v2. +- patches.fixes/ocfs2-devel-remove-redundant-OCFS2_MOUNT_POSIX_ACL-c.patch: + ocfs2-devel: remove redundant OCFS2_MOUNT_POSIX_ACL check + in ocfs2_get_acl_nolock(). +- patches.fixes/ocfs2-explicit-declare-uninitialized-var-in-user_clu.patch: + ocfs2: explicit declare uninitialized var in + user_cluster_connect(). +- patches.fixes/ocfs2-make-acl-use-the-default.patch: ocfs2: + Make acl use the default. +- patches.fixes/ocfs2-refcounttree.c-cleanup.patch: ocfs2: + refcounttree.c cleanup.. +- patches.fixes/ocfs2-replace-u8-by-__u8-in-ocfs2_fs.h.patch: + ocfs2: replace u8 by __u8 in ocfs2_fs.h. +- patches.fixes/ocfs2-return-EAGAIN-instead-of-EAGAIN-in-dlm.patch: + ocfs2: return -EAGAIN instead of EAGAIN in dlm. +- patches.fixes/ocfs2-set-MS_POSIXACL-on-remount.patch: ocfs2: + Set MS_POSIXACL on remount. +- patches.fixes/ocfs2-trivial-Use-le16_to_cpu-for-a-disk-value-in-xa.patch: + ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c. +- patches.fixes/ocfs2-trivial-Use-proper-mask-for-2-places-in-hearbe.patch: + ocfs2/trivial: Use proper mask for 2 places in hearbeat.c. +- patches.suse/fiemap-Add-new-extent-flag-FIEMAP_EXTENT_SHARED.patch: + fiemap: Add new extent flag FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-Use-FIEMAP_EXTENT_SHARED.patch: ocfs2: + Use FIEMAP_EXTENT_SHARED. +- patches.suse/ocfs2-allocation-resrvations.patch: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 22:40:43 CET 2010 - rjw@suse.de + +- patches.arch/x86-Limit-number-of-per-cpu-TSC-sync-messages.patch: + x86: Limit number of per cpu TSC sync messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Limit-the-number-of-processor-bootup-messages.patch: + x86: Limit the number of processor bootup messages (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch: + x86: Remove CPU cache size output for non-Intel too (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-enabling-x2apic-message-for-every-CPU.patch: + x86: Remove enabling x2apic message for every CPU (bnc#564618, + FATE#306952). +- patches.arch/x86-Remove-the-CPU-cache-size-printks.patch: x86: + Remove the CPU cache size printk's (bnc#564618, FATE#306952). +- patches.arch/x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch: + x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes + (bnc#564618, FATE#306952). +- patches.arch/x86-ucode-amd-Load-ucode-patches-once-and-not-separately-of-each-CPU.patch: + x86: ucode-amd: Load ucode-patches once and not separately of + each CPU (bnc#564618, FATE#306952). +- patches.fixes/sched-Limit-the-number-of-scheduler-debug-messages.patch: + sched: Limit the number of scheduler debug messages (bnc#564618, + FATE#306952). +- patches.fixes/timers-init-Limit-the-number-of-per-cpu-calibration-bootup-messages.patch: + timers, init: Limit the number of per cpu calibration bootup + messages (bnc#564618, FATE#306952). + +------------------------------------------------------------------- +Thu Jan 14 20:54:29 CET 2010 - jeffm@suse.com + +- patches.suse/add-initramfs-file_read_write: Build fix. + +------------------------------------------------------------------- +Thu Jan 14 20:44:18 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-enterprise: Refresh. + +------------------------------------------------------------------- +Thu Jan 14 20:16:19 CET 2010 - jeffm@suse.com + +- patches.suse/supported-flag-sysfs: Properly report proprietary modules + +------------------------------------------------------------------- +Thu Jan 14 19:24:32 CET 2010 - jeffm@suse.de + +- patches.suse/add-initramfs-file_read_write: initramfs: add + initramfs_{read,write} (bnc#568120). +- Re-enabled custom ACPI table loading from initramfs. + +------------------------------------------------------------------- +Thu Jan 14 12:58:33 CET 2010 - trenn@suse.de + +- Update config files. + Enable CONFIG_CPU_FREQ_DEBUG as requested by HP. + This one adds conditional printks which can be enabled via: + cpufreq.debug=7 + +------------------------------------------------------------------- +Thu Jan 14 12:55:42 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-54-alc861-capture-fix: ALSA: hda - + Fix missing capture mixer for ALC861/660 codecs (bnc#567340). + +------------------------------------------------------------------- +Thu Jan 14 10:25:21 CET 2010 - mmarek@suse.de + +- rpm/find-provides, rpm/kernel-binary.spec.in: really fix ppc + symbol provides. + +------------------------------------------------------------------- +Thu Jan 14 00:10:11 CET 2010 - rjw@suse.de + +- patches.arch/UV-Expose-irq_desc-node-in-proc.patch: Expose the + irq_desc node as /proc/irq/*/node. (bnc#566745, fate#306952). + +------------------------------------------------------------------- +Wed Jan 13 23:37:52 CET 2010 - bphilips@suse.de + +- patches.drivers/dmfe-tulip-Let-dmfe-handle-DM910x-except-for-SPARC-o.patch: + dmfe/tulip: Let dmfe handle DM910x except for SPARC on-board + chips (bnc#537016). + +------------------------------------------------------------------- +Wed Jan 13 23:13:19 CET 2010 - jkosina@suse.cz + +- patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch: + crypto: testmgr - Fix complain about lack test for internal + used algorithm (bnc#568278 FATE#306883). + +------------------------------------------------------------------- +Wed Jan 13 16:23:49 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc4. + - Eliminated patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + +------------------------------------------------------------------- +Wed Jan 13 16:04:58 CET 2010 - mmarek@suse.cz + +- patches.suse/bootsplash-keep-multiple-data: Keep multiple + splash screens for KMS (bnc#570082). +- patches.suse/bootsplash-scaler: Add bootsplash image scaler + (bnc#570082). + +------------------------------------------------------------------- +Wed Jan 13 13:53:04 CET 2010 - mmarek@suse.de + +- rpm/kernel-binary.spec.in, rpm/find-provides: extract exported + symbols from /boot/vmlinux before the image is stripped (affects + ppc). + +------------------------------------------------------------------- +Wed Jan 13 03:49:52 CET 2010 - jeffm@suse.com + +- patches.rpmify/twl6030-fix-note_interrupt-call: Rename to patches.fixes/twl6030-fix-note_interrupt-call + +------------------------------------------------------------------- +Wed Jan 13 02:01:55 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + Avoid atomic op by introducing discarding flag instead + +------------------------------------------------------------------- +Wed Jan 13 01:35:57 CET 2010 - jeffm@suse.com + +- patches.rpmify/autoconf-h-fix-locations: autoconf.h: Fix + locations. + +------------------------------------------------------------------- +Wed Jan 13 01:35:09 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: Renamed to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 23:25:59 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + Delete. + +------------------------------------------------------------------- +Tue Jan 12 22:19:03 CET 2010 - jeffm@suse.com + +- Update config files. + +------------------------------------------------------------------- +Tue Jan 12 22:08:43 CET 2010 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: rename to patches.rpmify/ppc-crashdump-typefix + +------------------------------------------------------------------- +Tue Jan 12 21:40:53 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:33:19 CET 2010 - jeffm@suse.com + +- patches.fixes/signal-fix-kernel-information-leak-with-print-fatal-signals-1: + kernel/signal.c: fix kernel information leak with + print-fatal-signals=1 (bnc#569902). + +------------------------------------------------------------------- +Tue Jan 12 21:14:05 CET 2010 - rjw@suse.de + +- needs_update: Remove some patches that we've got through the + upstream. + +------------------------------------------------------------------- +Tue Jan 12 17:57:52 CET 2010 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-53-alc861vd-capture-fix: ALSA: + hda - Fix ALC861-VD capture source mixer (bnc#568305). + +------------------------------------------------------------------- +Tue Jan 12 17:20:25 CET 2010 - jeffm@suse.com + +- Update to 2.6.33-rc3-git5. + +------------------------------------------------------------------- +Tue Jan 12 16:49:37 CET 2010 - trenn@suse.de + +- patches.fixes/nohz_prevent_clocksource_wrapping_during_idle.patch: + nohz: Prevent clocksource wrapping during idle (bnc#569238). + +------------------------------------------------------------------- +Tue Jan 12 14:21:01 CET 2010 - jack@suse.de + +- patches.suse/readahead-request-tunables.patch: Update readahead + and max_sectors tunables (bnc#548529). + +------------------------------------------------------------------- +Tue Jan 12 14:14:08 CET 2010 - jkosina@suse.cz + +- patches.drivers/watchdog-iTCO_wdt-Add-support-for-Intel-Ibex-Peak.patch: + iTCO_wdt: Add support for Intel Ibex Peak (bnc#557081 + FATE#308591). + +------------------------------------------------------------------- +Tue Jan 12 09:21:52 CET 2010 - tonyj@suse.de + +- needs_update: remove LTT/trace patches (assigned to jbl), all had + already been taken care of by my fwd port to 2.6.32 + +------------------------------------------------------------------- +Tue Jan 12 08:09:38 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Fixup compilation error. + +------------------------------------------------------------------- +Tue Jan 12 00:52:29 CET 2010 - rjw@suse.de + +- patches.fixes/PCI-Always-set-prefetchable-base-limit-upper32-registers.patch: + PCI: Always set prefetchable base/limit upper32 registers + (bnc#569003). + +------------------------------------------------------------------- +Mon Jan 11 21:04:07 CET 2010 - jeffm@suse.com + +- Merged patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu into + patches.arch/kvm-split-paravirt-ops-by-functionality + +------------------------------------------------------------------- +Mon Jan 11 21:02:38 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/kmsg-fix-parameter-limitations to + patches.arch/kmsg-fix-parameter-limitations + +------------------------------------------------------------------- +Mon Jan 11 20:50:27 CET 2010 - jeffm@suse.com + +- patches.rpmify/x86_64-ksyms-make-the-native_load_gs_index-export-depend-on-config_paravirt_cpu: + x86_64/ksyms: Make the native_load_gs_index export depend + on CONFIG_PARAVIRT_CPU. + +------------------------------------------------------------------- +Mon Jan 11 20:49:26 CET 2010 - jeffm@suse.com + +- Renamed patches.rpmify/rt2870-fix-section-mismatches to + patches.rpmify/rt2860-fix-section-mismatches + +------------------------------------------------------------------- +Mon Jan 11 20:14:56 CET 2010 - jeffm@suse.de + +- Updated to 2.6.33-rc3-git3. + - Eliminated 392 patches. + - Xen is disabled. + +------------------------------------------------------------------- +Mon Jan 11 16:32:52 CET 2010 - hare@suse.de + +- patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch: + Update qla4xxx driver for SLES11 SP1 (bnc#556572,FATE#307128). + +------------------------------------------------------------------- +Mon Jan 11 15:51:14 CET 2010 - jblunck@suse.de + +- needs_update: Removed some patches. + +------------------------------------------------------------------- +Mon Jan 11 14:34:00 CET 2010 - hare@suse.de + +- patches.drivers/bfa-2.1.2.1-update: Update bfa driver to + version 2.1.2.1 (bnc#561881). + +------------------------------------------------------------------- +Mon Jan 11 12:39:21 CET 2010 - hare@suse.de + +- patches.fixes/fcoe-libfc-adds-enable-di: adds enable/disable + for fcoe interface (bnc#562046). +- patches.fixes/fcoe-use-lld-s-wwpn-and-w: Use LLD's WWPN and + WWNN for lport if LLD supports ndo_fcoe_get_wwn (bnc#562046). +- patches.fixes/libfc-reduce-hold-time-on: reduce hold time on + SCSI host lock (bnc#562046). +- patches.fixes/libfc-remote-port-gets-st: remote port gets + stuck in restart state without really restarting (bnc#562046). + +------------------------------------------------------------------- +Mon Jan 11 12:13:36 CET 2010 - hare@suse.de + +- patches.drivers/mpt2sas-03.100.03.00-update: LSI mptsas2 driver + update to 03.100.03.00 (bnc#566013). + +------------------------------------------------------------------- +Mon Jan 11 10:33:48 CET 2010 - jbeulich@novell.com + +- patches.xen/xen-x86_64-nx-user-mappings: Delete (bnc#568741). +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:57:40 CET 2010 - hare@suse.de + +- patches.fixes/qla4xxx-lun-reset-fix: Delete. + +------------------------------------------------------------------- +Mon Jan 11 09:55:52 CET 2010 - hare@suse.de + +- patches.fixes/scsi-dh-rdac-add-ibm-174x: scsi_dh_rdac: Add + two new IBM devices (bnc# 556159). + +------------------------------------------------------------------- +Sat Jan 9 21:07:34 CET 2010 - jslaby@suse.de + +- patches.suse/perfmon2.patch: Refresh. +- patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch: + Refresh. +- patches.suse/rlim-0002-resource-move-kernel-function-inside-__KERNEL__.patch: + resource: move kernel function inside __KERNEL__ (FATE#305733). +- patches.suse/rlim-0003-resource-add-helpers-for-fetching-rlimits.patch: + resource: add helpers for fetching rlimits (FATE#305733). +- patches.suse/rlim-0004-IA64-use-helpers-for-rlimits.patch: + [IA64] use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + core: posix-cpu-timers, cleanup rlimits usage (FATE#305733). +- patches.suse/rlim-0006-PPC-use-helpers-for-rlimits.patch: PPC: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0007-S390-use-helpers-for-rlimits.patch: + S390: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch: + SPARC: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch: X86: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch: FS: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch: MM: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch: + core: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch: + infiniband: use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch: ipc: + use helpers for rlimits (FATE#305733). +- patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch: + SECURITY: add task_struct to setrlimit (FATE#305733). +- patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch: + core: add task_struct to update_rlimit_cpu (FATE#305733). +- patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + sys_setrlimit: make sure ->rlim_max never grows (FATE#305733). +- patches.suse/rlim-0018-core-split-sys_setrlimit.patch: core: + split sys_setrlimit (FATE#305733). +- patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch: + core: allow setrlimit to non-current tasks (FATE#305733). +- patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch: + core: optimize setrlimit for current task (FATE#305733). +- patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch: + FS: proc, switch limits reading to fops (FATE#305733). +- patches.suse/rlim-0022-FS-proc-make-limits-writable.patch: + FS: proc, make limits writable (FATE#305733). +- patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch: + core: do security check under task_lock (FATE#305733). +- patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch: + Delete. +- patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch: + Delete. +- patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch: + Delete. +- patches.suse/rlim-0005-core-split-sys_setrlimit.patch: Delete. +- patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch: + Delete. +- patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch: + Delete. +- patches.suse/rlim-0008-FS-proc-make-limits-writable.patch: + Delete. +- patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch: + Delete. +- patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch: + Delete. +- patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch: + Delete. +- patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch: Delete. +- patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch: + Delete. +- patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch: + Delete. +- patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch: + Delete. +- patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch: + Delete. +- patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch: + Delete. +- patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + Delete. + + Sync with upstream. Drop limits syscalls altogether. + +------------------------------------------------------------------- +Sat Jan 9 14:50:07 CET 2010 - jkosina@suse.cz + +- patches.apparmor/apparmor.diff: Delete, as it is unused after + splitup into smaller patches. + +------------------------------------------------------------------- +Fri Jan 8 18:22:42 CET 2010 - sjayaraman@suse.de + +- patches.suse/SoN-23-mm-swapfile.patch: Fix up the enum declaration + to avoid conflict due to a upstream change. + +------------------------------------------------------------------- +Fri Jan 8 18:17:27 CET 2010 - jkosina@suse.cz + +- patches.fixes/quota-fix-reserved-space-management-for-ordinary-fs.patch: + quota: fix reserved space management for ordinary fs. + +------------------------------------------------------------------- +Fri Jan 8 18:15:09 CET 2010 - gregkh@suse.de + +- patches.drivers/staging-hv-fix-smp-problems-in-the-hyperv-core-code.patch: + Staging: hv: fix smp problems in the hyperv core code. + +------------------------------------------------------------------- +Fri Jan 8 17:39:28 CET 2010 - jeffm@suse.de + +- Disable set,getprlimit compat syscalls on xen. + +------------------------------------------------------------------- +Fri Jan 8 17:09:03 CET 2010 - jeffm@suse.de + +- Disabled custom ACPI table loading from initramfs until + the scheduling while atomic issues are worked out. + +------------------------------------------------------------------- +Fri Jan 8 05:41:28 CET 2010 - jeffm@suse.de + +- Disabled set,getprlimit syscalls until the syscall numbers + have been officially reserved. + +------------------------------------------------------------------- +Fri Jan 8 03:32:21 CET 2010 - jeffm@suse.com + +- patches.arch/module-handle-ppc64-relocating-kcrctabs-when-config_relocatable-y: + module: handle ppc64 relocating kcrctabs when + CONFIG_RELOCATABLE=y (bnc#566243). + +------------------------------------------------------------------- +Thu Jan 7 12:18:20 CET 2010 - jbeulich@novell.com + +- Update Xen patches to 2.6.32.3 and c/s 974. +- Update EC2 config files. +- patches.xen/xen3-x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.xen/xen3-x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.xen/xen3-x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + Delete. +- patches.xen/xen-scsifront-block-timeout-update: Delete. +- patches.xen/xen3-x86-fix-nodac: Delete. + +------------------------------------------------------------------- +Thu Jan 7 07:12:44 CET 2010 - bphilips@suse.de + +- patches.drivers/e1000-enhance-frame-fragment-detection.patch: + e1000: enhance frame fragment detection (bnc#567376, + CVE-2009-4536). +- patches.drivers/e1000e-enhance-frame-fragment-detection.patch: + e1000e: enhance frame fragment detection (bnc#567376, + CVE-2009-4538). + +------------------------------------------------------------------- +Thu Jan 7 01:24:18 CET 2010 - gregkh@suse.de + +- Update to 2.6.32.3 + - security fixes + - bugfixes + - obsoletes: + - patches.arch/s390-04-03-dasd-diag-ro.patch + - patches.drivers/alsa-sp1-hda-50-alc88x-missing-capsrc_nids + - patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host + - patches.fixes/scsi-ipr-fix-eeh-recovery + +------------------------------------------------------------------- +Wed Jan 6 20:51:27 CET 2010 - rjw@suse.de + +- patches.arch/x86-Force-irq-complete-move-during-cpu-offline.patch: + x86: Force irq complete move during cpu offline (bnc#558247). +- patches.arch/x86-Remove-local_irq_enable-local_irq_disable-in-fixup_irqs.patch: + x86: Remove local_irq_enable()/local_irq_disable() in + fixup_irqs() (bnc#558247). +- patches.arch/x86-Remove-move_cleanup_count-from-irq_cfg.patch: + x86: Remove move_cleanup_count from irq_cfg (bnc#558247). +- patches.arch/x86-Remove-unnecessary-mdelay-from-cpu_disable_common.patch: + x86: Remove unnecessary mdelay() from cpu_disable_common() . +- patches.arch/x86-Unify-fixup_irqs-for-32-bit-and-64-bit-kernels.patch: + x86: Unify fixup_irqs() for 32-bit and 64-bit kernels + (bnc#558247). +- patches.arch/x86-Use-EOI-register-in-io-apic-on-intel-platforms.patch: + x86: Use EOI register in io-apic on intel platforms + (bnc#558247). +- patches.arch/x86-intr-remap-Avoid-irq_chip-mask-unmask-in-fixup_irqs-for-intr-remapping.patch: + x86, intr-remap: Avoid irq_chip mask/unmask in fixup_irqs() + for intr-remapping (bnc#558247). +- patches.arch/x86-io-apic-Move-the-effort-of-clearing-remoteIRR-explicitly-before-migrating-the-irq.patch: + x86, io-apic: Move the effort of clearing remoteIRR explicitly + before migrating the irq (bnc#558247). +- patches.arch/x86-ioapic-Document-another-case-when-level-irq-is-seen-as-an-edge.patch: + x86, ioapic: Document another case when level irq is seen as + an edge (bnc#558247). +- patches.arch/x86-ioapic-Fix-the-EOI-register-detection-mechanism.patch: + x86, ioapic: Fix the EOI register detection mechanism + (bnc#558247). + +------------------------------------------------------------------- +Wed Jan 6 15:01:16 CET 2010 - trenn@suse.de + +- patches.fixes/pci_aer_mce_inject_check_osc_for_aer.patch: PCI: + AER: fix aer inject result in kernel oops (bnc#566619). + +------------------------------------------------------------------- +Wed Jan 6 14:50:52 CET 2010 - trenn@suse.de + +- patches.fixes/PCIe-AER-reject-aer-inject-if-hardware-mask-error-reporting.patch: + PCIe AER: reject aer inject if hardware mask error reporting + (bnc#566621). + +------------------------------------------------------------------- +Wed Jan 6 00:30:09 CET 2010 - gregkh@suse.de + +- patches.xen/xen3-patch-2.6.29: Refresh due to conflicts from i915 + changes. Ick, the xen code sucks rocks, it shouldn't be touching + stuff here at all. + +------------------------------------------------------------------- +Wed Jan 6 00:14:14 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. +- patches.drivers/drm-i915-add-i915_lp_ring_sync-helper.patch: + drm/i915: add i915_lp_ring_sync helper (bnc#568447). +- patches.drivers/drm-i915-fix-get_core_clock_speed-for-g33-class-desktop-chips.patch: + drm/i915: fix get_core_clock_speed for G33 class desktop chips + (bnc#568447). +- patches.drivers/drm-i915-fully-switch-off-overlay-when-not-in-use.patch: + drm/i915: fully switch off overlay when not in use (bnc#568447). +- patches.drivers/drm-i915-implement-drmmode-overlay-support-v4.patch: + drm/i915: implement drmmode overlay support v4 (bnc#568447). +- patches.drivers/drm-i915-implement-fastpath-for-overlay-flip-waiting.patch: + drm/i915: implement fastpath for overlay flip waiting + (bnc#568447). + +------------------------------------------------------------------- +Wed Jan 6 00:00:59 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + Refresh. + +------------------------------------------------------------------- +Tue Jan 5 23:49:26 CET 2010 - gregkh@suse.de + +- patches.drivers/drm-i915-add-acpi-opregion-support-for-ironlake.patch: + drm/i915: Add ACPI OpRegion support for Ironlake (bnc#568436). + +------------------------------------------------------------------- +Tue Jan 5 22:49:44 CET 2010 - tonyj@suse.de + +- patches.fixes/oprofile_bios_ctr.patch: Update to newer version + +------------------------------------------------------------------- +Wed Dec 30 01:01:25 CET 2009 - nfbrown@suse.de + +- patches.fixes/nfs-fix-NFS4ERR_FILE_OPEN-handling: + NFS4ERR_FILE_OPEN handling in Linux/NFS (bnc#526819). + +------------------------------------------------------------------- +Mon Dec 28 17:56:19 CET 2009 - jeffm@suse.com + +- patches.fixes/dmar-fix-oops-with-no-dmar-table: dmar: Fix oops + with no DMAR table (bnc#548108). + +------------------------------------------------------------------- +Sun Dec 27 14:23:47 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-52-hdmi-sticky-stream-tag: ALSA: + hda - HDMI sticky stream tag support (FATE#306783). + +------------------------------------------------------------------- +Wed Dec 23 23:10:02 CET 2009 - rjw@suse.de + +- patches.arch/xpc_first_contact_when_active.patch: X86: UV + - xpc_make_first_contact hang due to not accepting ACTIVE + state. (bnc#562288, fate#306952). +- patches.arch/xpc_fix_xpc_get_fifo_entry_uv.patch: x86: UV - XPC + NULL deref when mesq becomes empty. (bnc#562288, fate#306952). +- patches.arch/xpc_introduce_xp_socket.patch: x86: UV - XPC + needs to provide an abstraction for uv_gpa. (bnc#562288, + fate #306952). +- patches.arch/xpc_pass_nasid_to_gru_create_message_queue.patch: + UV - pass nasid instead of nid to gru_create_message_queue + (bnc#562288, fate#306952). +- patches.arch/xpc_recv_msg_slots_wrap.patch: X86: UV - XPC + receive message reuse triggers invalid BUG_ON(). (bnc#562288, + fate#306952). +- patches.arch/xpc_uv_bios_changes.patch: x86: UV - Update XPC + to handle updated BIOS interface. (bnc#562288, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 21:57:53 CET 2009 - rjw@suse.de + +- patches.arch/bug-561989_gru_rollup.patch: SGI GRU Updates + (bnc#561989, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 20:31:57 CET 2009 - jeffm@suse.com + +- patches.fixes/ppc-crashdump-typefix: powerpc: use min_t in + copy_oldmem_page. + +------------------------------------------------------------------- +Wed Dec 23 18:56:48 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_uv_irq_affinity.patch: x86: SGI UV: Fix + irq affinity for hub based interrupts (bnc#561946, fate#306952). +- patches.arch/bug-561946_uv_move_ioapic.patch: x86, apic: Move + SGI UV functionality out of generic IO-APIC code (bnc#561946, + fate#306952). +- patches.arch/bug-561946_uv_use_rtc.patch: x86: UV RTC: Always + enable RTC clocksource (bnc#561946, fate#306952). + +------------------------------------------------------------------- +Wed Dec 23 17:51:32 CET 2009 - jeffm@suse.com + +- patches.fixes/ia64-fix-sba-iommu-to-handle-allocation-failure-properly: + fix SBA IOMMU to handle allocation failure properly + (bnc#545367). + +------------------------------------------------------------------- +Tue Dec 22 22:17:33 CET 2009 - jeffm@suse.com + +- Enabled CONFIG_CRASH_DUMP on ppc/ppc64 (bnc#566243). + +------------------------------------------------------------------- +Tue Dec 22 16:51:37 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi-ipr-fix-eeh-recovery: ipr: fix EEH recovery + (bnc#566613). + +------------------------------------------------------------------- +Sun Dec 20 22:23:41 CET 2009 - trenn@suse.de + +- Update config files. +- patches.drivers/cpufreq_ondemand_limit_fix.patch: cpufreq: + Fix ondemand to not request targets outside policy limits + (fate#306746). +- patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch: + x86,cpufreq: Processor Clocking Control (PCC) driver + (fate#306746). +- supported.conf: + +------------------------------------------------------------------- +Sun Dec 20 00:42:16 CET 2009 - rjw@suse.de + +- patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch: + x86, uv: Add serial number parameter to uv_bios_get_sn_info() + (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: Delete. + +------------------------------------------------------------------- +Sat Dec 19 18:53:28 CET 2009 - jeffm@suse.com + +- patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly: + scsi_debug: scale virtual_gb with sector_size properly + (bnc#535939). + +------------------------------------------------------------------- +Sat Dec 19 00:58:56 CET 2009 - gregkh@suse.de + +- patches.xen/xen3-fixup-xen: Refresh. Fix up build error from + .32.2 import + +------------------------------------------------------------------- +Sat Dec 19 00:22:21 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.2 + - lots of security fixes + - loads of bugfixes + - other goodness + - obsoletes: + - patches.arch/bug-561939_bau_data_config.patch + - patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch + - patches.arch/s390-04-01-clear-high-regs.patch + - patches.arch/s390-kvm-prefix.patch + - patches.arch/s390-kvm-psw.patch + - patches.arch/x86-fix-nodac + - patches.arch/x86_mce_nfs-mig2 + - patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero + - patches.fixes/uart-txen-race.patch + +------------------------------------------------------------------- +Fri Dec 18 21:17:46 CET 2009 - jeffm@suse.com + +- Update config files: CONFIG_STRICT_DEVMEM=n. It was enabled + mistakenly in commit 3df90f9e and affects using tools like + crash with a live system. + +------------------------------------------------------------------- +Fri Dec 18 17:53:06 CET 2009 - gregkh@suse.de + +- Update config files. + CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT = n (bnc#565607) + +------------------------------------------------------------------- +Fri Dec 18 15:11:18 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-{24..51}-*: 2.6.33-rc1 backport + fixes for HDMI and new Realtek codecs (FATE#306783) +- Refresh Patch-mainline tags in patches.drivers/alsa-* + +------------------------------------------------------------------- +Fri Dec 18 14:45:04 CET 2009 - jjolly@suse.de + +- patches.arch/s390-05-01-netiucv-tx-bytes.patch: netiucv: + displayed TX bytes value much too high (BNC#565612). +- patches.arch/s390-05-02-cmm-suspend.patch: cmm: free pages on + hibernate. (BNC#565612). +- patches.arch/s390-05-03-iucv-suspend.patch: iucv: add work_queue + cleanup for suspend (BNC#565612). +- patches.arch/s390-05-04-zfcp-work-queue.patch: zfcp: Assign + scheduled work to driver queue (BNC#565612). +- patches.arch/s390-05-05-zfcp-fail-commands.patch: zfcp: Don't + fail SCSI commands when transitioning to blocked fc_rport + (BNC#565612,LTC#58541). +- patches.arch/s390-05-06-zfcp-adisc.patch: zfcp: Improve ELS + ADISC handling (BNC#565612). +- patches.arch/s390-05-07-zfcp-fsf-errors.patch: zfcp: Update + FSF error reporting (BNC#565612). +- patches.arch/s390-05-08-zfcp-block.diff: zfcp: Block SCSI EH + thread for rport state BLOCKED (BNC#565612). +- patches.arch/s390-05-09-ctcm-suspend-wait.diff: ctcm: suspend + has to wait for outstanding I/O (BNC#565612). +- patches.arch/s390-05-10-rework-tso.diff: qeth: rework TSO + functions (BNC#565612). +- patches.arch/s390-05-11-atomic-volatile.patch: kernel: improve + code generated by atomic operations. (BNC#565612). +- patches.arch/s390-05-12-tape-remove-fn.patch: tape: incomplete + device removal (BNC#565612). +- patches.arch/s390-05-13-qeth-blkt-defaults.patch: qeth: + set default BLKT settings dependend on OSA hw level + (BNC#565612,LTC#58654). +- patches.arch/s390-05-14-dasd-dasd-enable-prefix.patch: dasd: + enable prefix independent of pav support (BNC#565612). +- patches.arch/s390-05-15-dasd-s390dbf-strings.patch: dasd: + remove strings from s390dbf (BNC#565612). +- patches.arch/s390-05-16-dasd-wait-lcu-setup.patch: dasd: + let device initialization wait for LCU setup (BNC#565612). + +------------------------------------------------------------------- +Fri Dec 18 12:58:36 CET 2009 - mmarek@suse.cz + +- rpm/kernel-binary.spec.in: Fix generating /boot/Kerntypes* for + s390/vanilla. + +------------------------------------------------------------------- +Fri Dec 18 04:35:18 CET 2009 - nfbrown@suse.de + +- patches.fixes/md-start_ro-fix: md: fix small irregularity with + start_ro module parameter (bnc#565219). + +------------------------------------------------------------------- +Fri Dec 18 01:29:32 CET 2009 - rjw@suse.de + +- patches.xen/xen-fix-compilation-after-rename_generic_int.patch: + XEN: Fix compilation after renaming of generic_irqs. + +------------------------------------------------------------------- +Fri Dec 18 00:30:52 CET 2009 - rjw@suse.de + +- patches.arch/bug-561946_rename_generic_int.patch: x86: UV RTC: + Rename generic_interrupt to x86_platform_ipi (bnc#561946, + fate#306952). + +------------------------------------------------------------------- +Thu Dec 17 23:48:10 CET 2009 - mmarek@suse.cz + +- patches.suse/s390-Kerntypes.diff: S390: Generate Kerntypes file. +- rpm/kernel-binary.spec.in: install /boot/Kerntypes-$version. + +------------------------------------------------------------------- +Thu Dec 17 21:02:52 CET 2009 - jeffm@suse.com + +- patches.fixes/powerpc-fix-cpu-name-in-show-cpuinfo: powerpc: + fix cpu name in show-cpuinfo (bnc#565267). + +------------------------------------------------------------------- +Thu Dec 17 13:32:32 CET 2009 - hare@suse.de + +- patches.fixes/fc-transport-remove-BUG_ON: scsi_transport_fc: + remove invalid BUG_ON (bnc#564479). +- patches.fixes/lpfc-ia64-hang: lpfc: fix hang on SGI ia64 + platform (bnc#564479). +- patches.fixes/qla2xxx-dpc-thread-can-execute-before-scsi-host: + qla2xxx: dpc thread can execute before scsi host has been added + (bnc#564479). +- patches.suse/fc-transport-allow-dev_loss_tmo-disable: Remove + capping from dev_loss_tmo (bnc#492469). + +------------------------------------------------------------------- +Wed Dec 16 19:25:01 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up CONFIG_IPV6 option that was built into the kernel + incorrectly (bnc#564357) + +------------------------------------------------------------------- +Wed Dec 16 18:52:34 CET 2009 - jeffm@suse.com + +- patches.fixes/acpi-fix-build-when-config_acpi_custom_override_initramfs-is-not-defined: + acpi: Fix build when CONFIG_ACPI_CUSTOM_OVERRIDE_INITRAMFS is + not defined. + +------------------------------------------------------------------- +Wed Dec 16 15:41:04 CET 2009 - jbeulich@novell.com + +- Update Xen patches to c/s 960. +- Update Xen EC2 config files. +- patches.xen/xen3-bug-561933_uv_pat_is_gru_range.patch: x86: + UV SGI: Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.xen/xen3-x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Wed Dec 16 10:15:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.fixes/aggressive-zone-reclaim.patch: be more aggressive + with zone reclaims (bnc#476525). + +------------------------------------------------------------------- +Wed Dec 16 10:02:18 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/x86-mark_rodata_rw.patch: Refresh. + +------------------------------------------------------------------- +Wed Dec 16 09:45:58 CET 2009 - npiggin@suse.de + +- patches.suse/x86-mark_rodata_rw.patch: Add mark_rodata_rw() + to un-protect read-only kernel code pages (bnc#439348). + +------------------------------------------------------------------- +Tue Dec 15 20:07:17 CET 2009 - jeffm@suse.com + +- patches.fixes/firewire-ohci-handle-receive-packets-with-a-data-length-of-zero: + firewire: ohci: handle receive packets with a data length of + zero (bnc#564712 CVE-2009-4138). + +------------------------------------------------------------------- +Tue Dec 15 12:50:08 CET 2009 - mmarek@suse.cz + +- rpm/config.sh: set OBS_PROJECT and IBS_PROJECT variables for + osc_wrapper. + +------------------------------------------------------------------- +Tue Dec 15 12:43:00 CET 2009 - knikanth@suse.de + +- supported.conf: Mark dm-log-userspace as supported (fate#307380). + +------------------------------------------------------------------- +Tue Dec 15 08:41:01 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + Fix the build failure due to previous commit. + +------------------------------------------------------------------- +Tue Dec 15 06:14:43 CET 2009 - sjayaraman@suse.de + +- patches.fixes/sched-recalculate-tunables-on-hot-add-remove: + sched: Fix missing sched tunable recalculation on cpu add/remove + (bnc#560317). +- patches.fixes/sched-make-tunable-scaling-configurable: sched: + Make tunable scaling style configurable (bnc#560317). +- patches.fixes/sched-sysctl-for-normalized-tunables: sched: + Update normalized values on user updates via proc (bnc#560317). + +------------------------------------------------------------------- +Tue Dec 15 01:10:25 CET 2009 - gregkh@suse.de + +- Update config files. + - make SCSI and ATA drivers modules again. + (bnc#564357) + +------------------------------------------------------------------- +Tue Dec 15 00:56:41 CET 2009 - gregkh@suse.de + +- Update config files. + - fix up USB options that were built into the kernel incorrectly + (bnc#564357) + +------------------------------------------------------------------- +Mon Dec 14 22:58:22 CET 2009 - jjolly@suse.de + +- patches.arch/s390-04-01-clear-high-regs.patch: kernel: + clear high-order bits after switching to 64-bit mode + (BNC#563999,LTC#58088). +- patches.arch/s390-04-02-zcrypt-hrtimer.patch: zcrypt: Do not + simultaneously schedule hrtimer (BNC#563999,LTC#58222). +- patches.arch/s390-04-03-dasd-diag-ro.patch: dasd: support DIAG + access for read-only devices (BNC#563999,LTC#57147). +- patches.arch/s390-04-04-mm-fault-fix.patch: kernel: performance + counter fix and page fault optimization (BNC#563999). +- patches.arch/s390-04-05-sclp-dump-indicator.patch: kernel: + fix dump indicator (BNC#563999). +- patches.arch/s390-04-06-dasd-move-diag-kmsg.patch: dasd: + move diag kmsg to generic dasd kmsg (BNC#563999). +- patches.arch/s390-04-07-cio-fix-double-free.patch: cio: double + free under memory pressure (BNC#563999). +- patches.arch/s390-04-08-cio-fix-dev-stall.patch: cio: device + recovery stalls after multiple hardware events (BNC#563999). +- patches.arch/s390-04-09-cio-recover-hw-changes.patch: cio: + device recovery fails after concurrent hardware changes + (BNC#563999). +- patches.arch/s390-04-10-cio-fix-onoffline-failure.patch: cio: + setting a device online or offline fails for unknown reasons + (BNC#563999). +- patches.arch/s390-04-11-cio-error-reporting.patch: cio: + incorrect device state after device recognition and recovery + (BNC#563999). +- patches.arch/s390-04-12-cio-avoid-panic.patch: cio: kernel + panic after unexpected interrupt (BNC#563999). +- patches.arch/s390-04-13-cio-internal-io.patch: cio: + initialization of I/O devices fails (BNC#563999). +- patches.arch/s390-04-14-cio-allow-offline.patch: cio: not + operational devices cannot be deactivated (BNC#563999). +- patches.arch/s390-04-15-cio-split-pgid.patch: cio: erratic + DASD I/O behavior (BNC#563999). +- patches.arch/s390-04-16-cio-path-verification.patch: cio: + DASD cannot be set online (BNC#563999). +- patches.arch/s390-04-17-cio-steal-lock.patch: cio: DASD steal + lock task hangs (BNC#563999). +- patches.arch/s390-04-18-cio-fix-memleak-chk-dev.patch: cio: + memory leaks when checking unusable devices (BNC#563999). +- patches.arch/s390-04-19-cio-fix-deact-dev-panic.patch: cio: + deactivated devices can cause use after free panic (BNC#563999). + +------------------------------------------------------------------- +Mon Dec 14 22:29:34 CET 2009 - rjw@suse.de + +- patches.arch/bug-561933_uv_pat_is_gru_range.patch: x86: UV SGI: + Don't track GRU space in PAT (bnc#561933, fate#306952). +- patches.arch/bug-561939_bau_data_config.patch: x86: SGI UV + BAU initialization (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_bios_call_hwperf.patch: x86: UV + hardware performance counter and topology access (bnc#561939, + fate#306952). +- patches.arch/bug-561939_uv_gpa_is_mmr_space.patch: x86: UV - + Introduce uv_gpa_is_mmr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_gpa_to_soc_phys_ram.patch: + x86: UV - Introduce a means to translate from gpa -> + socket_paddr. (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_ipi_macro.patch: x86: UV: Introduce + uv_hub_ipi_value (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_mmap_low.patch: x86: SGI UV: Map + low MMR ranges (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_cleanup.patch: x86: UV RTC: + Clean up error handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_fixes.patch: x86: UV RTC: + Fix early expiry handling (bnc#561939, fate#306952). +- patches.arch/bug-561939_uv_rtc_setup_evt.patch: x86: UV RTC: + Add clocksource only boot option (bnc#561939, fate#306952). +- patches.arch/bug-564471_x86_Fix_duplicated_UV_BAU_interrupt_vector.patch: + x86: Fix duplicated UV BAU interrupt vector (bnc#564471). + +------------------------------------------------------------------- +Mon Dec 14 19:33:04 CET 2009 - gregkh@suse.de + +- Refresh patches to be clean of fuzz + +------------------------------------------------------------------- +Mon Dec 14 19:20:52 CET 2009 - gregkh@suse.de + +- Update to 2.6.32.1 + - security fixes + - bugfixes + - obsoletes: + - patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext + - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects + +------------------------------------------------------------------- +Mon Dec 14 18:45:26 CET 2009 - jjolly@suse.de + +- patches.drivers/dcb-data-center-bridging-ops-s: dcb: data + center bridging ops should be r/o (BNC#562046). +- patches.drivers/drivers-net-request_irq-remove: drivers/net: + request_irq - Remove unnecessary leading & from second arg + (BNC#562046). +- patches.drivers/ethtool-add-direct-attach-supp: ethtool: Add + Direct Attach support to connector port reporting (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-al: ixgbe: Add + support for 82599 alternative WWNN/WWPN prefix (BNC#562046). +- patches.drivers/ixgbe-add-support-for-82599-ba: ixgbe: add + support for 82599 based Express Module X520-P2 (BNC#562046). +- patches.drivers/ixgbe-add-support-for-netdev_o: ixgbe: Add + support for netdev_ops.ndo_fcoe_get_wwn to 82599 (BNC#562046). +- patches.drivers/ixgbe-change-default-ring-size: ixgbe: change + default ring size (BNC#562046). +- patches.drivers/ixgbe-disable-flow-control-for: ixgbe: Disable + Flow Control for certain devices (BNC#562046). +- patches.drivers/ixgbe-display-currently-attach: ixgbe: Display + currently attached PHY through ethtool (BNC#562046). +- patches.drivers/ixgbe-fix-erroneous-display-of: ixgbe: Fix + erroneous display of stats by ethtool -S (BNC#562046). +- patches.drivers/ixgbe-fix-kr-to-kx-fail-over-f: ixgbe: Fix KR + to KX fail over for Mezzanine cards (BNC#562046). +- patches.drivers/ixgbe-fix-receive-address-regi: ixgbe: + Fix Receive Address Register (RAR) cleaning and accounting + (BNC#562046). +- patches.drivers/ixgbe-flush-the-lsc-mask-chang: ixgbe: Flush + the LSC mask change to prevent repeated interrupts (BNC#562046). +- patches.drivers/ixgbe-handle-parameters-for-tx: ixgbe: handle + parameters for tx and rx EITR, no div0 (BNC#562046). +- patches.drivers/ixgbe-links2-is-not-a-valid-re: ixgbe: LINKS2 + is not a valid register for 82598 (BNC#562046). +- patches.drivers/ixgbe-make-queue-pairs-on-sing: ixgbe: Make + queue pairs on single MSI-X interrupts (BNC#562046). +- patches.drivers/ixgbe-modify-82599-hwrsc-stati: ixgbe: Modify + 82599 HWRSC statistics counters (BNC#562046). +- patches.drivers/ixgbe-only-set-clear-vfe-in-ix: ixgbe: Only + set/clear VFE in ixgbe_set_rx_mode (BNC#562046). +- patches.drivers/ixgbe-performance-tweaks: ixgbe: performance + tweaks (BNC#562046). +- patches.drivers/ixgbe-r_idx-not-used-in-ixgbe_: ixgbe: r_idx + not used in ixgbe_msix_clean_rx() (BNC#562046). +- patches.drivers/ixgbe-select-fcoe-tx-queue-in-: ixgbe: select + FCoE Tx queue in ndo_select_queue (BNC#562046). +- patches.drivers/ixgbe-use-eiam-to-automask-msi: ixgbe: use + EIAM to automask MSI-X (BNC#562046). +- patches.drivers/ixgbe-use-known-user-priority-: ixgbe: use + known user priority for FCoE when DCB is enabled (BNC#562046). +- patches.drivers/ixgbe-use-rx-buffer-length-fro: ixgbe: Use rx + buffer length from rx ring for configuring rscctl (BNC#562046). +- patches.drivers/ixgbe-use-the-instance-of-net_: ixgbe: Use + the instance of net_device_stats from net_device. (BNC#562046). +- patches.drivers/net-add-ndo_fcoe_get_wwn-to-ne: net: Add + ndo_fcoe_get_wwn to net_device_ops (BNC#562046). +- patches.drivers/net-add-netdev_alloc_skb_ip_al: net: Add + netdev_alloc_skb_ip_align() helper (BNC#562046). +- patches.drivers/net-use-netdev_alloc_skb_ip_al: net: Use + netdev_alloc_skb_ip_align() (BNC#562046). +- patches.drivers/vlan-add-support-to-netdev_ops: vlan: + Add support to netdev_ops.ndo_fcoe_get_wwn for VLAN device + (BNC#562046). +- patches.fixes/fcoe-allow-scsi-fcp-to-be: fcoe: allow SCSI-FCP + to be processed directly in softirq context (BNC#562046). +- patches.fixes/fcoe-libfc-add-get_lesb-t: fcoe, libfc: add + get_lesb() to allow LLD to fill the link error status block + (LESB) (BNC#562046). +- patches.fixes/libfc-add-fc-bb-5-lesb-co: libfc: add FC-BB-5 + LESB counters to fcoe_dev_stats (BNC#562046). +- patches.fixes/libfc-add-fcoe_fc_els_les: libfc: add + fcoe_fc_els_lesb to fc_fcoe.h for FC-BB-5 LESB definitions + (BNC#562046). +- patches.fixes/libfc-add-support-of-rece: libfc: add support + of receiving ELS_RLS (BNC#562046). +- patches.fixes/libfc-add-target-reset-fl: libfc: Add target + reset flag to FCP header file (BNC#562046). +- patches.fixes/libfc-fix-payload-size-pa: libfc: fix payload size + passed to fc_frame_alloc() in fc_lport_els_request (BNC#562046). +- patches.fixes/libfcoe-add-checking-disa: libfcoe: add checking + disable flag in FIP_FKA_ADV (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip-: libfcoe: add tracking + FIP Missing Discovery Advertisement count (BNC#562046). +- patches.fixes/libfcoe-add-tracking-fip--0: libfcoe: add tracking + FIP Virtual Link Failure count (BNC#562046). + +------------------------------------------------------------------- +Mon Dec 14 14:41:57 CET 2009 - sjayaraman@suse.de + +- patches.suse/sched-revert-latency-defaults: Revert sched + latency defaults and turn FAIR_SLEEPERS off (bnc#557307). + +------------------------------------------------------------------- +Mon Dec 14 11:36:02 CET 2009 - jkosina@suse.cz + +- patches.fixes/uart-txen-race.patch: Serial: Do not read IIR in + serial8250_start_tx when UART_BUG_TXEN (bnc#479304 bnc#509066). + +------------------------------------------------------------------- +Sun Dec 13 23:39:54 CET 2009 - rjw@suse.de + +- patches.fixes/bug-562290-Fix-isolcpus-boot-option.patch: sched: + Fix isolcpus boot option (bnc#562290, fate#306952). + +------------------------------------------------------------------- +Fri Dec 11 23:15:58 CET 2009 - mmarek@suse.cz + +- patches.suse/supported-flag: Fix -Wmissing-prototypes warnings + in modpost.c. + +------------------------------------------------------------------- +Fri Dec 11 23:13:32 CET 2009 - mmarek@suse.cz + +- patches.rpmify/modpost-segfault: modpost: fix segfault with + short symbol names. + +------------------------------------------------------------------- +Fri Dec 11 17:04:18 CET 2009 - jeffm@suse.com + +- Moved kernel-docs into the git repo. It is now built automatically + with the matching kernel sources. + +------------------------------------------------------------------- +Fri Dec 11 16:13:14 CET 2009 - trenn@suse.de + +- patches.suse/kdb_fix_ia64_build.patch: Fix ia64 - Export + kdb_usb_kbds (none). + +------------------------------------------------------------------- +Fri Dec 11 15:41:08 CET 2009 - trenn@suse.de + +Jeff updated kdb, try without this ugly workaround. +If it still does not work, I have something better... +- patches.suse/kdb_x86_fix_hang.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 15:03:38 CET 2009 - hare@suse.de + +Cleanup patches for series2git: +- patches.suse/kdb-common: Refresh. +- patches.suse/kdump-dump_after_notifier.patch: Refresh. + +------------------------------------------------------------------- +Fri Dec 11 12:06:28 CET 2009 - trenn@suse.de + +Updated MCE/MCA patches from Andi -> delete the old ones: + +- patches.arch/x86_mce_hwpoison-action_result-valid-pfn.patch: + HWPOISON: return ENXIO on invalid page number (fate#307738). +- patches.arch/x86_mce_hwpoison-is-free-page.patch: HWPOISON: + detect free buddy pages explicitly (fate#307738). +- patches.arch/x86_mce_hwpoison-no-double-ref.patch: HWPOISON: + avoid grabbing the page count multiple times during madvise + injection (fate#307738). +- patches.arch/x86_mce_madvise-locking: HWPOISON: Use + get_user_page_fast in hwpoison madvise (fate#307738). +- patches.arch/x86_mce_nfs-mig2: NFS: Fix nfs_migrate_page() + (fate#307738). +- patches.arch/x86_mce_offline-inject: HWPOISON: Add a madvise() + injector for soft page offlining (fate#307738). +- patches.arch/x86_mce_page-offline: HWPOISON: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_ref-to-flags: HWPOISON: Turn ref argument + into flags argument (fate#307738). +- patches.arch/x86_mce_shake-page: HWPOISON: Be more aggressive + at freeing non LRU caches (fate#307738). +- patches.arch/x86_mce_undef-lru: HWPOISON: Undefine short-hand + macros after use to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_lru_cleanup.patch: Delete. +- patches.arch/x86_mce_page_offlining.patch: Delete. +- patches.arch/x86_mce_page_offlining_test_ability.patch: Delete. +- patches.arch/x86_mce_test_page.patch: Delete. + +------------------------------------------------------------------- +Fri Dec 11 09:30:27 CET 2009 - hare@suse.de + +- needs_update: Merge or delete remaining patches. +- patches.fixes/scsi-dh-emc-mode-select-10-size: DM-MPIO fails + to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.fixes/scsi-dh-emc-rw-mismatch: Server crashes when + path failures occur against EMC storage (bnc#474482). +- patches.fixes/scsi-dh-rdac-add-stk: STK arrays missing from + rdac devicehandler (bnc#503855). +- patches.fixes/scsi-retry-alua-transition-in-progress: I/O + errors for ALUA state transitions (bnc#491289). +- patches.suse/dm-mpath-no-activate-for-offlined-paths: DM-MPIO + fails to tresspass LUNs on CLARiiON arrays (bnc#484529). +- patches.suse/dm-mpath-no-partitions-feature: Disable partitions + scan for multipathed devices (bnc#402922,bnc#514767). + +------------------------------------------------------------------- +Fri Dec 11 09:28:05 CET 2009 - tiwai@suse.de + +- Update config files: set back to CONFIG_SOUND=m + +------------------------------------------------------------------- +Fri Dec 11 08:59:39 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-23-hp-mute-led-gpio-fixes: + ALSA: hda - Fix LED GPIO setup for HP laptops with IDT codecs + (bnc#547357,bnc#523487). + +------------------------------------------------------------------- +Fri Dec 11 02:53:50 CET 2009 - jeffm@suse.de + +- patches.suse/kdb-usb-rework: Fix ia64. + +------------------------------------------------------------------- +Fri Dec 11 01:51:36 CET 2009 - jeffm@suse.com + +- Update config files: Enable USB_SERIAL_DEBUG. + +------------------------------------------------------------------- +Fri Dec 11 01:49:34 CET 2009 - jeffm@suse.com + +- patches.suse/kdb-usb-rework: kdb: Cleanup KDB_USB. + +------------------------------------------------------------------- +Fri Dec 11 00:56:57 CET 2009 - jeffm@suse.com + +- Update config files. + - Disabled USB_TEST and USB_LIBUSUAL. + +------------------------------------------------------------------- +Thu Dec 10 22:59:17 CET 2009 - jeffm@suse.com + +- Update config files. Re-enable missing options: + - CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y + - CONFIG_VIDEO_GO7007=m (and related options) + +------------------------------------------------------------------- +Thu Dec 10 22:57:57 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + Refresh to fix fuzz + +------------------------------------------------------------------- +Thu Dec 10 22:09:07 CET 2009 - jeffm@suse.com + +- Updated KDB to v4.4-2.6.32-3 and re-enabled USB keyboard support. + +------------------------------------------------------------------- +Thu Dec 10 21:59:20 CET 2009 - mmarek@suse.de + +- rpm/kernel-binary.spec.in: Fix vmlinux stripping on power + (bnc#559547) + +------------------------------------------------------------------- +Thu Dec 10 21:26:12 CET 2009 - bphilips@suse.de + +- patches.drivers/netxen-0000-Use-the-instance-of-net_device_stats-from-net.patch: + netxen: Use the instance of net_device_stats from + net_device. (bnc#560003, fate#307134). +- patches.drivers/netxen-0001-remove-sub-64-bit-mem-accesses.patch: + netxen: remove sub 64-bit mem accesses (bnc#560003, + fate#307134). +- patches.drivers/netxen-0002-add-access-to-on-chip-memory-for-tools.patch: + netxen: add access to on chip memory for tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0003-annotate-register-windowing-code.patch: + netxen: annotate register windowing code (bnc#560003, + fate#307134). +- patches.drivers/netxen-0004-separate-register-and-memory-access-lock.patch: + netxen: separate register and memory access lock (bnc#560003, + fate#307134). +- patches.drivers/netxen-0005-add-sysfs-entries-for-diag-tools.patch: + netxen: add sysfs entries for diag tools (bnc#560003, + fate#307134). +- patches.drivers/netxen-0006-defines-for-next-revision.patch: + netxen: defines for next revision (bnc#560003, fate#307134). +- patches.drivers/netxen-0007-128-memory-controller-support.patch: + netxen: 128 memory controller support (bnc#560003, fate#307134). +- patches.drivers/netxen-0008-reset-sequence-changes.patch: + netxen: reset sequence changes (bnc#560003, fate#307134). +- patches.drivers/netxen-0009-onchip-memory-access-change.patch: + netxen: onchip memory access change (bnc#560003, fate#307134). +- patches.drivers/netxen-0010-fix-error-codes-in-for-tools-access.patch: + netxen: fix error codes in for tools access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0011-sysfs-control-for-auto-firmware-recovery.patch: + netxen: sysfs control for auto firmware recovery (bnc#560003, + fate#307134). +- patches.drivers/netxen-0012-update-version-to-4.0.62.patch: + netxen; update version to 4.0.62 (bnc#560003, fate#307134). +- patches.drivers/netxen-0013-fix-builds-for-SYSFS-n-or-MODULES-n.patch: + netxen: fix builds for SYSFS=n or MODULES=n (bnc#560003, + fate#307134). +- patches.drivers/netxen-0014-support-for-new-firmware-file-format.patch: + netxen: support for new firmware file format (bnc#560003, + fate#307134). +- patches.drivers/netxen-0015-refactor-indirect-register-access.patch: + netxen: refactor indirect register access (bnc#560003, + fate#307134). +- patches.drivers/netxen-0016-add-PCI-IDs-for-new-chip.patch: + netxen: add PCI IDs for new chip (bnc#560003, fate#307134). +- patches.drivers/netxen-0017-update-module-info.patch: netxen: + update module info (bnc#560003, fate#307134). +- patches.drivers/netxen-0018-module-firmware-hints.patch: + netxen: module firmware hints (bnc#560003, fate#307134). +- patches.drivers/netxen-0019-update-version-to-4.0.65.patch: + netxen: update version to 4.0.65 (bnc#560003, fate#307134). +- patches.drivers/netxen-0020-remove-PCI-IDs-of-CNA-device.patch: + netxen: remove PCI IDs of CNA device (bnc#560003, fate#307134). +- patches.drivers/netxen-0021-fix-debug-tools-access-for-NX2031.patch: + netxen : fix debug tools access for NX2031 (bnc#560003, + fate#307134). +- patches.drivers/netxen-0022-fix-failure-cases-for-fw-hang-recovery.patch: + netxen: fix failure cases for fw hang recovery (bnc#560003, + fate#307134). + +------------------------------------------------------------------- +Thu Dec 10 18:37:34 CET 2009 - bphilips@suse.de + +- patches.drivers/qlge-0001-Use-the-instance-of-net_device_stats-from-net_.patch: + qlge: Use the instance of net_device_stats from + net_device. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0002-Remove-explicit-setting-of-PCI-Dev-CTL-reg.patch: + qlge: Remove explicit setting of PCI Dev CTL reg. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0003-Set-PCIE-max-read-request-size.patch: + qlge: Set PCIE max read request size. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0004-Add-handler-for-DCBX-firmware-event.patch: + qlge: Add handler for DCBX firmware event. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0005-Store-firmware-revision-as-early-as-possible.patch: + qlge: Store firmware revision as early as possible. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0006-Remove-inline-math-for-small-rx-buf-mapping.patch: + qlge: Remove inline math for small rx buf mapping. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0007-Get-rid-of-firmware-handler-debug-code.patch: + qlge: Get rid of firmware handler debug code. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0008-Don-t-fail-open-when-port-is-not-initialized.patch: + qlge: Don't fail open when port is not initialized. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0009-Add-CBFC-pause-frame-counters-to-ethtool-stats.patch: + qlge: Add CBFC pause frame counters to ethtool + stats. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0010-Size-RX-buffers-based-on-MTU.patch: + qlge: Size RX buffers based on MTU. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0011-Add-ethtool-get-set-pause-parameter.patch: + qlge: Add ethtool get/set pause parameter. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0012-Add-ethtool-blink-function.patch: + qlge: Add ethtool blink function. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0013-Add-ethtool-wake-on-LAN-function.patch: + qlge: Add ethtool wake on LAN function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0014-Add-ethtool-register-dump-function.patch: + qlge: Add ethtool register dump function. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0015-Add-ethtool-self-test.patch: qlge: + Add ethtool self-test. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0016-Change-naming-on-vlan-API.patch: + qlge: Change naming on vlan API. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0017-Fix-indentations.patch: qlge: Fix + indentations. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0018-Add-firmware-driver-sub-command-support.patch: + qlge: Add firmware/driver sub-command support. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0019-Clean-up-netdev-stats-usage.patch: + qlge: Clean up netdev->stats usage. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0020-Do-not-change-frame-routing-during-suspend.patch: + qlge: Do not change frame routing during suspend. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0021-Add-asic-reset-to-open-call.patch: + qlge: Add asic reset to open call. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0022-Clean-up-module-parameter-name.patch: + qlge: Clean up module parameter name. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0023-Change-version-to-v1.00.00.23.00.00-01.patch: + qlge: Change version to v1.00.00.23.00.00-01. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0024-Bonding-fix-for-mode-6.patch: qlge: + Bonding fix for mode 6. (bnc#560420, FATE#307130). +- patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch: + qlge: Add performance change for non-split headers. (bnc#560420, + FATE#307130). +- patches.drivers/qlge-0026-Add-firmware-core-dump.patch: qlge: + Add firmware core dump. (bnc#560420, FATE#307130). + +------------------------------------------------------------------- +Thu Dec 10 17:04:21 CET 2009 - hare@suse.de + +- needs_update: Delete more merged fixes. +- patches.suse/dm-mpath-leastpending-path-update: Refresh. + +------------------------------------------------------------------- +Thu Dec 10 16:11:25 CET 2009 - hare@suse.de + +- needs_update: Delete merged driver fixes. +- patches.drivers/megaraid-mbox-fix-SG_IO: megaraid_mbox: Oops + on SG_IO (bnc#475619). + +------------------------------------------------------------------- +Thu Dec 10 16:05:10 CET 2009 - duwe@suse.de + +- Disable PHYP_DUMP for all PPC flavours, per bnc#541302. + +------------------------------------------------------------------- +Thu Dec 10 15:42:47 CET 2009 - jbenc@suse.cz + +- patches.suse/novfs-fix-debug-message.patch: novfs: fix debug + message. + +------------------------------------------------------------------- +Thu Dec 10 09:55:39 CET 2009 - hare@suse.de + +- patches.fixes/tehuti-firmware-name: Tehuti network driver + references wrong firmware (bnc#562092). + +------------------------------------------------------------------- +Wed Dec 9 22:50:30 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: fix section mismatch due to + previous checkin + +------------------------------------------------------------------- +Wed Dec 9 21:45:11 CET 2009 - tonyj@suse.de + +- patches.suse/audit-export-logging.patch: export audit logging + symbols. + +------------------------------------------------------------------- +Wed Dec 9 17:09:00 CET 2009 - jbohac@suse.cz + +- Update config files: added CONFIG_IP_NF_MATCH_IPV4OPTIONS + to ppc64/trace + +------------------------------------------------------------------- +Wed Dec 9 16:30:27 CET 2009 - jeffm@suse.com + +- patches.fixes/ext4-fix-insufficient-checks-in-ext4_ioc_move_ext: + ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT (bnc#561018 + CVE-2009-4131). + +------------------------------------------------------------------- +Wed Dec 9 10:13:00 CET 2009 - jbeulich@novell.com + +- patches.xen/xen3-patch-2.6.32: Fix a potentially serious mis-merge + in swiotlb code. + +------------------------------------------------------------------- +Wed Dec 9 08:15:31 CET 2009 - jjolly@suse.de + +- patches.fixes/nohz-delay-from-tip.diff: nohz: Introduce + arch_needs_cpu. +- patches.fixes/reuse-ktime-from-tip.diff: nohz: Reuse ktime in + sub-functions of tick_check_idle.. +- series.conf: Moved s390 patchs to proper place + +------------------------------------------------------------------- +Wed Dec 9 06:06:34 CET 2009 - npiggin@suse.de + +- patches.fixes/ipc-ns-fix-memory-leak-idr.patch: ipc: ns fix + memory leak (bnc#518767). +- patches.fixes/ipc-remove-unreachable-code-in-semc.patch: + (bnc#518767). +- patches.fixes/ipc-semc-add-a-per-semaphore-pending-list.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-if-semops-fail.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-semop-operations.patch: + (bnc#518767). +- patches.fixes/ipc-semc-optimize-single-sops-when-semval-is-zero.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-optimise-undo-list-search.patch: + (bnc#518767). +- patches.fixes/ipc-semc-sem-preempt-improve.patch: (bnc#518767). +- patches.fixes/ipc-semc-sem-use-list-operations.patch: + (bnc#518767). + +------------------------------------------------------------------- +Wed Dec 9 00:33:42 CET 2009 - bphilips@suse.de + +- needs_update: patches moved upstream or obsoleted by upstream + +------------------------------------------------------------------- +Tue Dec 8 22:23:11 CET 2009 - mmarek@suse.cz + +- patches.suse/kbuild-generate-modules.builtin: Update to what will + hopefully be in 2.6.33. +- patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin: Delete. + +------------------------------------------------------------------- +Tue Dec 8 19:46:37 CET 2009 - jbohac@suse.cz + +- Update config files. +- patches.suse/netfilter-ipv4options: netfilter ipv4options + match from patch-o-matic-ng (bnc#131728 - FATE#182). + +------------------------------------------------------------------- +Tue Dec 8 18:18:56 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-devzero-optimisation.patch: mm: /dev/zero + optimisation (bnc#430738). + +------------------------------------------------------------------- +Tue Dec 8 16:22:34 CET 2009 - tiwai@suse.de + +- patches.drivers/alsa-sp1-hda-22-alc888-exclude-unusable-adcs: + ALSA: hda - Exclude unusable ADCs for ALC88x (bnc#561235). + +------------------------------------------------------------------- +Tue Dec 8 15:27:53 CET 2009 - mmarek@suse.cz + +- patches.drivers/reenable-generic_serial: Revert "tty: Mark + generic_serial users as BROKEN". +- Update config files: enable RIO and SX. +- rpm/generic_serial-blacklist: blacklist generic_serial users from + automatic loading (bnc#551348). + +------------------------------------------------------------------- +Tue Dec 8 14:58:48 CET 2009 - rgoldwyn@suse.de + +- needs_update: patches merged upstream +- novfs patches to be handled by novfs team + +------------------------------------------------------------------- +Tue Dec 8 13:38:10 CET 2009 - npiggin@suse.de + +- needs_update: +- patches.suse/mm-vmalloc-fail-dump-stack.patch: mm: improve + vmalloc reporting (bnc#511079). + +------------------------------------------------------------------- +Tue Dec 8 11:30:20 CET 2009 - npiggin@suse.de + +- needs_update: most of mine are merged. apparmor patch sent to Andreas. + +------------------------------------------------------------------- +Tue Dec 8 08:31:34 CET 2009 - coly.li@suse.de + +- patches.suse/64bytes_lvb_len.diff: use 64byte lvb len.(bnc#515645) + +------------------------------------------------------------------- +Tue Dec 8 02:05:07 CET 2009 - agraf@suse.de + +- patches.arch/s390-kvm-prefix.patch: KVM: s390: Fix prefix + register checking in arch/s390/kvm/sigp.c (FATE#306513). +- patches.arch/s390-kvm-psw.patch: KVM: s390: Make psw available + on all exits, not just a subset (FATE#306513). + +------------------------------------------------------------------- +Mon Dec 7 16:48:55 CET 2009 - tiwai@suse.de + +- patches.drivers/synaptics-hp-clickpad: Input: Add support of + clickpad mode to synaptics mouse driver (bnc#547370). + +------------------------------------------------------------------- +Mon Dec 7 13:22:15 CET 2009 - jbeulich@novell.com + +- Update Xen patches to 2.6.32 final and c/s 958. +- patches.xen/xen-dcdbas: force proper address translation + in DCDBAS. +- patches.xen&xen-vmalloc_32: guarantee 32-bit + (bus-)addressability of vmalloc_32() output (bnc#548010, + bnc#552492). +- patches.xen/xen-x86_64-nx-user-mappings: set NX bit in kernel + version of top level user mode page table entries. +- patches.xen/xen3-rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch: + x86: add ia32 compat prlimit syscalls (FATE#305733). +- patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata: + x86-64: align RODATA kernel section to 2MB with + CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata: + x86-64: preserve large page mapping for 1st 2MB kernel txt + with CONFIG_DEBUG_RODATA (bnc#558249). +- patches.xen/xen3-x86-fix-nodac: x86: fix iommu=nodac parameter + handling (bnc#463829, bnc#482220). +- patches.xen/xen3-x86-mcp51-no-dac: x86: disallow DAC for MCP51 + PCI bridge (bnc#463829, bnc#482220). +- Update EC2 config files (disable CAN_DEV and UIO). + +------------------------------------------------------------------- +Mon Dec 7 11:50:32 CET 2009 - jbeulich@novell.com + +- patches.arch/x86-crypto-add-ghash-algorithm-test.patch, + patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch: + Fix build warnings. + +------------------------------------------------------------------- +Mon Dec 7 10:57:41 CET 2009 - hare@suse.de + +- patches.drivers/lpfc-add-raywire-id: Add missing PCI-ID to lpfc. + +------------------------------------------------------------------- +Sat Dec 5 01:39:16 CET 2009 - tonyj@suse.de + +- config.conf: add trace flavor for ppc64 (fate# 307051) +- Update config files. + +------------------------------------------------------------------- +Fri Dec 4 21:24:27 CET 2009 - jeffm@suse.com + +- Split apparmor.diff out into separate patches to align more + closely with the upstream AppArmor 2.4 repo. +- patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling: + AppArmor: Fix cap audit_caching preemption disabling. +- patches.apparmor/apparmor-fix-change_profile-failing-lpn401931: + AppArmor: Fix change_profile failing lpn401931. +- patches.apparmor/apparmor-fix-change_profile-failure: AppArmor: + Fix change_profile failure. +- patches.apparmor/apparmor-fix-determination-of-forced-audit-messages: + AppArmor: Fix determination of forced AUDIT messages.. +- patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly: + AppArmor: fix failure to audit change_hat correctly. +- patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used: + AppArmor: Fix file auditing when quiet is used. +- patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack: + AppArmor: Fix leak when profile transition table fails unpack. +- patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths: + AppArmor: Fix mediation of created paths that look like + "deleted" paths. +- patches.apparmor/apparmor-fix-oops-after-profile-removal: + AppArmor: Fix oops after profile removal. +- patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace: + AppArmor: Fix oops when auditing the addition of profile + namespace. +- patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds: + AppArmor: Fix Oops when in apparmor_bprm_set_creds. +- patches.apparmor/apparmor-fix-profile-namespace-removal: + AppArmor: Fix profile namespace removal.. +- patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops: + AppArmor: Fix refcounting bug causing leak of creds and oops. +- patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths: + AppArmor: Fully close race condition for deleted paths. +- patches.apparmor/apparmor-missing-unlock: AppArmor: Add missing + unlock to next_profile. +- patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem: + AppArmor: Policy load and replacement can fail to alloc mem. +- patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use: + AppArmor: Fix security_ops->task_setrlimit API use. + +------------------------------------------------------------------- +Fri Dec 4 17:58:54 CET 2009 - gregkh@suse.de + +- Update config files. +- patches.suse/revert-usb-remove-phidget-drivers-from-kernel-tree.patch: + Revert "USB: remove phidget drivers from kernel tree.". + +------------------------------------------------------------------- +Fri Dec 4 16:12:43 CET 2009 - jjolly@suse.de + +- patches.arch/s390-message-catalog.diff: Updated patch + (bnc#549193,FATE#306999,LTC#57210). + +------------------------------------------------------------------- +Fri Dec 4 16:08:50 CET 2009 - mmarek@suse.cz + +- supported.conf: Update wireless drivers. + +------------------------------------------------------------------- +Fri Dec 4 15:57:48 CET 2009 - jjolly@suse.de + +- patches.arch/s390-03-qeth-hs-traffic-analyzer.patch: qeth: + HiperSockets Network Traffic Analyzer (bnc#560674). + +------------------------------------------------------------------- +Fri Dec 4 15:28:10 CET 2009 - hare@suse.de + +- patches.drivers/qla2xxx-8.03.01-k7-update: qla2xxx driver + update to 8.03.01-k7 (bnc#560415). + +------------------------------------------------------------------- +Fri Dec 4 14:35:02 CET 2009 - mmarek@suse.cz + +- rpm/package-descriptions: Add description for kernel-vmi. + +------------------------------------------------------------------- +Fri Dec 4 13:40:29 CET 2009 - trenn@suse.de + +- patches.arch/x86_mce_lru_cleanup.patch: HWPOISON: Undefine lru + define after table to avoid namespace conflict (fate#307738). +- patches.arch/x86_mce_page_offlining.patch: Add soft page + offline support (fate#307738). +- patches.arch/x86_mce_page_offlining_test_ability.patch: + HWPOISON: Add a madvise() injector for soft page offlining + (fate#307738). +- patches.arch/x86_mce_test_page.patch: Expose Test pageflagA + and set pageflagB primitive (fate#307738). + +------------------------------------------------------------------- +Fri Dec 4 13:12:44 CET 2009 - mmarek@suse.cz + +- Add the vmi flavor again. + +------------------------------------------------------------------- +Fri Dec 4 12:26:59 CET 2009 - sjayaraman@suse.de + +- patches.suse/SoN-18-netvm-skbuff-reserve.patch: add emergeny flag + inside kmemcheck boundaries. +- patches.xen/xen3-auto-common.diff: Refresh. + ------------------------------------------------------------------- Fri Dec 4 00:41:32 CET 2009 - gregkh@suse.de diff --git a/kernel-ec2.spec b/kernel-vmi.spec similarity index 87% rename from kernel-ec2.spec rename to kernel-vmi.spec index 87e2fb1..0c9c85d 100644 --- a/kernel-ec2.spec +++ b/kernel-vmi.spec @@ -1,7 +1,7 @@ # -# spec file for package kernel-ec2 (Version 2.6.32) +# spec file for package kernel-vmi (Version 2.6.33) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,10 +18,10 @@ # norootforbuild %define srcversion 2.6.32 -%define patchversion 2.6.32 +%define patchversion 2.6.33-rc5 %define variant %{nil} %include %_sourcedir/kernel-spec-macros -%define build_flavor ec2 +%define build_flavor vmi %define build_kdump (%build_flavor == "kdump") %define build_xen (%build_flavor == "xen" || %build_flavor == "ec2") %define build_vanilla (%build_flavor == "vanilla") @@ -46,10 +46,10 @@ %define install_vdso 0 %endif -Name: kernel-ec2 -Summary: The Amazon EC2 Xen Kernel -Version: 2.6.32 -Release: 3 +Name: kernel-vmi +Summary: VMI-enabled kernel +Version: 2.6.33 +Release: 1 %if %using_buildservice %else %endif @@ -83,8 +83,10 @@ Requires(post): mkinitrd BuildRequires: python %endif %ifarch s390 s390x +%if %build_vanilla BuildRequires: dwarfextract %endif +%endif %if %build_xen %ifarch %ix86 %if %build_flavor != "ec2" @@ -145,7 +147,7 @@ Source112: patches.trace.tar.bz2 Source113: patches.kabi.tar.bz2 Source120: kabi.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build -ExclusiveArch: %ix86 x86_64 +ExclusiveArch: %ix86 # These files are found in the kernel-source package: NoSource: 0 NoSource: 100 @@ -189,15 +191,13 @@ Obsoletes: ocfs2-kmp-%build_flavor # 11.1 Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 # Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name +%define __find_provides %_sourcedir/find-provides %my_builddir %name # Will modules not listed in supported.conf abort the kernel build (0/1)? %define supported_modules_check 0 %description -The Linux kernel for Xen paravirtualization. - -This kernel can only be used both as an unprivileged ("xenU") -kernel (for Amazon EC2). +The Linux Kernel designed to run on top of a virtual machine +interface layer (VMI). %source_timestamp @@ -319,45 +319,49 @@ cd %kernel_build_dir mkdir -p %buildroot/boot # (Could strip out non-public symbols.) cp -p System.map %buildroot/boot/System.map-%kernelrelease-%build_flavor -%define extract_vmlinux_debuginfo 0 -%if 0%{?__debug_package:1} -%ifnarch ppc ppc64 -%define extract_vmlinux_debuginfo 1 -%endif -%endif add_vmlinux() { - local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor -%if %extract_vmlinux_debuginfo - local vmlinux_debug=usr/lib/debug/$vmlinux.debug - mkdir -p $(dirname %buildroot/$vmlinux_debug) - cp vmlinux %buildroot/$vmlinux - /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ - -l vmlinux.sourcefiles %buildroot/$vmlinux - # FIXME: create and package build-id symlinks - objcopy --only-keep-debug \ - %buildroot/$vmlinux \ - %buildroot/$vmlinux_debug || : - objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ - --strip-debug \ - %buildroot/$vmlinux || : - mkdir -p %buildroot/usr/src/debug - LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else + local vmlinux=boot/vmlinux-%kernelrelease-%build_flavor compressed=false + if test $1 == "--compressed"; then + compressed=true + fi cp vmlinux %buildroot/$vmlinux + >%my_builddir/vmlinux.debug.files +%if 0%{?__debug_package:1} + if $compressed; then + local vmlinux_debug=usr/lib/debug/$vmlinux.debug + mkdir -p $(dirname %buildroot/$vmlinux_debug) + /usr/lib/rpm/debugedit -b $RPM_BUILD_DIR -d /usr/src/debug \ + -l vmlinux.sourcefiles %buildroot/$vmlinux + # FIXME: create and package build-id symlinks + objcopy --only-keep-debug \ + %buildroot/$vmlinux \ + %buildroot/$vmlinux_debug || : + objcopy --add-gnu-debuglink=%buildroot/$vmlinux_debug \ + --strip-debug \ + %buildroot/$vmlinux || : + mkdir -p %buildroot/usr/src/debug + LANG=C sort -z -u vmlinux.sourcefiles | grep -Ezv "<(built-in|stdin)>" \ + | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) + find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 + find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 + echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files + else + # make vmlinux executable so that find-debuginfo.sh picks it up + # (TODO: fix find-debuginfo.sh instead) + chmod +x %buildroot/$vmlinux + # exctact the provided symbols before they are stripped away + echo %buildroot/$vmlinux | /usr/lib/rpm/find-provides.ksyms %name > \ + %my_builddir/$(basename $vmlinux).provides + fi %endif - if [ "$1" = --compressed ]; then + if $compressed; then gzip -9 %buildroot/$vmlinux chmod a-x %buildroot/$vmlinux.gz fi } %if %build_kdump add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %else # architecture specifics @@ -378,7 +382,6 @@ add_vmlinux() %endif %ifarch ppc ppc64 add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor image=vmlinux %endif %ifarch ia64 @@ -391,7 +394,9 @@ add_vmlinux() add_vmlinux --compressed cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then + if test -e arch/s390/boot/kerntypes.o; then + cp -p arch/s390/boot/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor + elif test -x "$(which dwarfextract 2>/dev/null)"; then dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" fi %if %CONFIG_KMSG_IDS == "y" @@ -399,9 +404,6 @@ add_vmlinux() find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' %endif %endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi # end of build_kdump %endif for sub in '-base' '' '-extra'; do @@ -452,8 +454,10 @@ if [ %CONFIG_MODULES = y ]; then echo "Consistency check error: please update supported.conf." fi %ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then + if test -e arch/s390/boot/kerntypes.o; then + : + elif test -x "$(which dwarfextract 2>/dev/null)" -a \ + -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor; then find %buildroot -name "*.ko" > kofiles.list dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" fi @@ -533,24 +537,19 @@ if [ %CONFIG_MODULES = y ]; then # Replace the absolute with a relative path sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" fi add_dirs_to_filelist() { sed -rn ' # print file name p # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : + s:%%[a-z]+(\([^)]+\))? ?::g + # add %%dir prefix + s:^:%%dir : # print all parents :a # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: + s:^%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: s:/[^/]+$::p ta ' "$@" | sort -u @@ -565,17 +564,19 @@ for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ done { cd %buildroot find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ + \( -type l -o -name 'initrd-*' \) -printf '%%%%ghost /%%p\n' -o \ + -type f -name 'vmlinux-*.provides' -prune -o \ + -type f -name 'vmlinux-*' -printf '%%%%attr(0644, root, root) /%%p\n' -o \ -type f -printf '/%%p\n' # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' + echo '%%ghost /boot/initrd-%kernelrelease-kdump' touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump if [ %CONFIG_MODULES = y ]; then find lib/modules/%kernelrelease-%build_flavor \ -type d -o \ \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ + ! -path '*/modules.builtin' \) -printf '%%%%ghost /%%p\n' \ -o -name '*.ko' -prune -o -printf '/%%p\n' cat %my_builddir/base-modules fi @@ -584,7 +585,7 @@ done -type d -o \ -printf '/%%p\n' if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" + echo "%%doc %_docdir/%name" fi } | sort -u >%my_builddir/tmp cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ @@ -618,7 +619,7 @@ rm %my_builddir/tmp %defattr(-, root, root) %package base -Summary: The Amazon EC2 Xen Kernel - base modules +Summary: VMI-enabled kernel - base modules License: GPLv2 Group: System/Kernel Url: http://www.kernel.org/ @@ -634,10 +635,8 @@ Conflicts: libc.so.6()(64bit) %endif %description base -The Linux kernel for Xen paravirtualization. - -This kernel can only be used both as an unprivileged ("xenU") -kernel (for Amazon EC2). +The Linux Kernel designed to run on top of a virtual machine +interface layer (VMI). This package contains only the base modules, required in all installs. @@ -657,7 +656,7 @@ This package contains only the base modules, required in all installs. %endif %package extra -Summary: The Amazon EC2 Xen Kernel - Unsupported kernel modules +Summary: VMI-enabled kernel - Unsupported kernel modules License: GPLv2 Group: System/Kernel Url: http://www.kernel.org/ @@ -676,10 +675,8 @@ Conflicts: libc.so.6()(64bit) %endif %description extra -The Linux kernel for Xen paravirtualization. - -This kernel can only be used both as an unprivileged ("xenU") -kernel (for Amazon EC2). +The Linux Kernel designed to run on top of a virtual machine +interface layer (VMI). This package contains additional modules not supported by Novell. @@ -761,9 +758,6 @@ Debug information for package %name-devel %source_timestamp -%if %extract_vmlinux_debuginfo - %files devel-debuginfo -f vmlinux.debug.files -%endif %changelog diff --git a/kernel-xen.spec b/kernel-xen.spec deleted file mode 100644 index 10d36c5..0000000 --- a/kernel-xen.spec +++ /dev/null @@ -1,769 +0,0 @@ -# -# spec file for package kernel-xen (Version 2.6.32) -# -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. -# -# All modifications and additions to the file contributed by third parties -# remain the property of their copyright owners, unless otherwise agreed -# upon. The license for this file, and modifications and additions to the -# file, is the same license as for the pristine package itself (unless the -# license for the pristine package is not an Open Source License, in which -# case the license is the MIT License). An "Open Source License" is a -# license that conforms to the Open Source Definition (Version 1.9) -# published by the Open Source Initiative. - -# Please submit bugfixes or comments via http://bugs.opensuse.org/ -# - -# norootforbuild - -%define srcversion 2.6.32 -%define patchversion 2.6.32 -%define variant %{nil} -%include %_sourcedir/kernel-spec-macros -%define build_flavor xen -%define build_kdump (%build_flavor == "kdump") -%define build_xen (%build_flavor == "xen" || %build_flavor == "ec2") -%define build_vanilla (%build_flavor == "vanilla") -%define build_ps3 (%build_flavor == "ps3") -%define build_src_dir %my_builddir/linux-%srcversion -%define src_install_dir /usr/src/linux-%kernelrelease%variant -%define obj_install_dir %src_install_dir-obj -%define rpm_install_dir %buildroot%obj_install_dir -%define kernel_build_dir %my_builddir/linux-obj -%(chmod +x %_sourcedir/{arch-symbols,find-provides,guards,check-for-config-changes,check-supported-list,modversions,kabi.pl,split-modules}) -%global cpu_arch %(%_sourcedir/arch-symbols %_target_cpu) -%define cpu_arch_flavor %cpu_arch/%build_flavor -# Define some CONFIG variables as rpm macros as well. (rpm cannot handle -# defining them all at once.) -%define config_vars CONFIG_MODULES CONFIG_KMSG_IDS CONFIG_SPLIT_PACKAGE CONFIG_ENTERPRISE_SUPPORT -%{expand:%(eval "$(test -n "%cpu_arch_flavor" && tar xfj %_sourcedir/config.tar.bz2 --to-stdout config/%cpu_arch_flavor)"; for config in %config_vars; do echo "%%global $config ${!config:-n}"; done)} -%define split_base (%CONFIG_SPLIT_PACKAGE == "y") -%define split_extra (%CONFIG_SPLIT_PACKAGE == "y" && %CONFIG_ENTERPRISE_SUPPORT == "y") -%ifarch %ix86 x86_64 -%define install_vdso 1 -%else -%define install_vdso 0 -%endif - -Name: kernel-xen -Summary: The Xen Kernel -Version: 2.6.32 -Release: 3 -%if %using_buildservice -%else -%endif -License: GPLv2 -Group: System/Kernel -Url: http://www.kernel.org/ -AutoReqProv: on -BuildRequires: coreutils module-init-tools sparse -BuildRequires: fdupes -Provides: multiversion(kernel) -Provides: %{name}_%_target_cpu = %version-%release -%if %split_base -Provides: kernel-base = %version-%source_rel -# Obsolete the -base subpackage from 11.1 and 11.2 development phase -Obsoletes: %name-base <= 2.6.31 -%endif -Requires(pre): coreutils awk -# Need a module-init-tools with /usr/lib/module-init-tools/weak-modules2 -Requires(post): module-init-tools >= 3.4 -# This Requires is wrong, because the post/postun scripts have a -# test -x update-bootloader, having perl-Bootloader is not a hard requirement. -# But, there is no way to tell rpm or yast to schedule the installation -# of perl-Bootloader before kernel-binary.rpm if both are in the list of -# packages to install/update. Likewise, this is true for mkinitrd. -# Need a perl-Bootloader with /usr/lib/bootloader/bootloader_entry -Requires(post): perl-Bootloader >= 0.4.15 -Requires(post): mkinitrd -#!BuildIgnore: perl-Bootloader mkinitrd -%ifarch ia64 -# arch/ia64/scripts/unwcheck.py -BuildRequires: python -%endif -%ifarch s390 s390x -BuildRequires: dwarfextract -%endif -%if %build_xen -%ifarch %ix86 -%if %build_flavor != "ec2" -Provides: kernel-xenpae = %version -Obsoletes: kernel-xenpae <= %version -%endif -%endif -#!BuildIgnore: xen -%endif -Provides: %name-nongpl -Obsoletes: %name-nongpl -%if %build_vanilla -# force bzip2 instead of lzma compression to allow install on older dist versions -%define _binary_payload w9.bzdio -%endif -# dead network if installed on SLES10, otherwise it will work (mostly) -Conflicts: sysfsutils < 2.0 -%if ! %build_vanilla -Conflicts: apparmor-profiles <= 2.1 -Conflicts: apparmor-parser < 2.3 -# root-lvm only works with newer udevs -Conflicts: udev < 118 -Conflicts: lvm2 < 2.02.33 -%endif -%ifarch %ix86 -Conflicts: libc.so.6()(64bit) -%endif -Provides: kernel = %version-%source_rel -Source0: http://www.kernel.org/pub/linux/kernel/v2.6/linux-%srcversion.tar.bz2 -Source10: preun.sh -Source11: postun.sh -Source12: pre.sh -Source13: post.sh -Source20: series.conf -Source22: supported.conf -Source30: arch-symbols -Source31: guards -Source33: check-for-config-changes -Source34: check-supported-list -Source40: source-timestamp -Source44: find-provides -Source46: modversions -Source47: kabi.pl -Source48: split-modules -Source49: kernel-spec-macros -Source100: config.tar.bz2 -Source101: patches.arch.tar.bz2 -Source102: patches.drivers.tar.bz2 -Source103: patches.fixes.tar.bz2 -Source104: patches.rpmify.tar.bz2 -Source105: patches.suse.tar.bz2 -Source107: patches.xen.tar.bz2 -Source108: patches.addon.tar.bz2 -Source109: patches.kernel.org.tar.bz2 -Source110: patches.apparmor.tar.bz2 -Source111: patches.rt.tar.bz2 -Source112: patches.trace.tar.bz2 -Source113: patches.kabi.tar.bz2 -Source120: kabi.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-build -ExclusiveArch: %ix86 x86_64 -# These files are found in the kernel-source package: -NoSource: 0 -NoSource: 100 -NoSource: 101 -NoSource: 102 -NoSource: 103 -NoSource: 104 -NoSource: 105 -NoSource: 107 -NoSource: 108 -NoSource: 109 -NoSource: 110 -NoSource: 111 -NoSource: 120 -# The following KMPs have been integrated into the kernel package. -# sles10 / 10.3 -Obsoletes: iwlwifi-kmp-%build_flavor -Obsoletes: ipw3945-kmp-%build_flavor -# sles10 / 11.0 -Obsoletes: uvcvideo-kmp-%build_flavor -# 10.3 -Obsoletes: adm8211-kmp-%build_flavor -Obsoletes: rt2x00-kmp-%build_flavor -Obsoletes: rfswitch-kmp-%build_flavor -# 11.0 -Obsoletes: atl2-kmp-%build_flavor -Obsoletes: wlan-ng-kmp-%build_flavor -Obsoletes: et131x-kmp-%build_flavor -Obsoletes: ivtv-kmp-%build_flavor -Obsoletes: at76_usb-kmp-%build_flavor -Obsoletes: pcc-acpi-kmp-%build_flavor -Obsoletes: btusb-kmp-%build_flavor -# sle11-ga -Obsoletes: enic-kmp-%build_flavor -Obsoletes: fnic-kmp-%build_flavor -Obsoletes: brocade-bfa-kmp-%build_flavor -Obsoletes: kvm-kmp-%build_flavor -Obsoletes: perfmon-kmp-%build_flavor -# sle11 -Obsoletes: ocfs2-kmp-%build_flavor -# 11.1 -Obsoletes: quickcam-kmp-%build_flavor < 0.6.7 -# Provide the exported symbols as "ksym(symbol) = hash" -%define __find_provides %_sourcedir/find-provides %name -# Will modules not listed in supported.conf abort the kernel build (0/1)? -%define supported_modules_check 0 - -%description -The Linux kernel for Xen paravirtualization. - -This kernel can be used both as the domain0 ("xen0") and as an -unprivileged ("xenU") kernel. - - -%source_timestamp -%prep -if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then - echo "The %name-%version.nosrc.rpm package does not contain the" \ - "complete sources. Please install kernel-source-%version.src.rpm." - exit 1 -fi -SYMBOLS= -if test -e %_sourcedir/extra-symbols; then - SYMBOLS=$(cat %_sourcedir/extra-symbols) - echo "extra symbol(s):" $SYMBOLS -fi -# Unpack all sources and patches -%setup -q -c -T -a 0 -a 100 -a 101 -a 102 -a 103 -a 104 -a 105 -a 107 -a 108 -a 109 -a 110 -a 111 -a 112 -a 113 -a 120 -mkdir -p %kernel_build_dir -supported_conf() { - %_sourcedir/guards $* < %_sourcedir/supported.conf | \ - sed 's,.*/,,; s,\.ko$,,' | sort -u -} -# Generate the list of modules to be marked as supported -{ supported_conf base - supported_conf --default=0 external | sed 's/$/ external/' -} > %kernel_build_dir/Module.supported -supported_conf --default=0 base >%kernel_build_dir/Module.base -cd linux-%srcversion -# Apply patches -echo "trap 'echo \"*** patch \$_ failed ***\"' ERR" >../apply-patches.sh -%_sourcedir/guards $SYMBOLS <%_sourcedir/series.conf | \ -%if %build_vanilla - egrep '^patches\.(kernel\.org|rpmify)/' | \ -%endif - sed 's:^:patch -s -F0 -E -p1 --no-backup-if-mismatch -i ../:' \ - >>../apply-patches.sh -bash -ex ../apply-patches.sh -cd %kernel_build_dir -if [ -f %_sourcedir/localversion ] ; then - cat %_sourcedir/localversion > localversion -fi -cp ../config/%cpu_arch_flavor .config -%build_src_dir/scripts/config \ - --set-str CONFIG_LOCALVERSION -%release_major-%build_flavor \ - --enable CONFIG_SUSE_KERNEL \ -%if 0%{?__debug_package:1} - --enable CONFIG_DEBUG_INFO -%else - --disable CONFIG_DEBUG_INFO -%endif -MAKE_ARGS="$MAKE_ARGS -C %build_src_dir O=$PWD" -if test -e %_sourcedir/TOLERATE-UNKNOWN-NEW-CONFIG-OPTIONS; then - yes '' | make oldconfig $MAKE_ARGS -else - cp .config .config.orig - make silentoldconfig $MAKE_ARGS < /dev/null - %_sourcedir/check-for-config-changes .config.orig .config - rm .config.orig -fi -make prepare $MAKE_ARGS -make scripts $MAKE_ARGS -krel=$(make -s kernelrelease $MAKE_ARGS) -if [ "$krel" != "%kernelrelease-%build_flavor" ]; then - echo "Kernel release mismatch: $krel != %kernelrelease-%build_flavor" >&2 - exit 1 -fi -make clean $MAKE_ARGS -rm -f source -find . ! -type d -printf '%%P\n' > %my_builddir/obj-files -cat > .kernel-binary.spec.buildenv <" \ - | ( cd %_builddir && cpio -pd0m %buildroot/usr/src/debug ) - find %buildroot/usr/src/debug -type d -print0 | xargs -0 -r chmod 0755 - find %buildroot/usr/src/debug -type f -print0 | xargs -0 -r chmod 0644 - echo -e "%%defattr(-, root, root)\\n/$vmlinux_debug" >%my_builddir/vmlinux.debug.files -%else - cp vmlinux %buildroot/$vmlinux -%endif - if [ "$1" = --compressed ]; then - gzip -9 %buildroot/$vmlinux - chmod a-x %buildroot/$vmlinux.gz - fi -} -%if %build_kdump - add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor - image=vmlinux -%else -# architecture specifics -%ifarch %ix86 x86_64 - add_vmlinux --compressed -%if %build_xen - image=vmlinuz -%else - image=bzImage -%endif - cp -p arch/x86/boot/$image %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor - image=vmlinuz -%endif -%ifarch alpha - add_vmlinux --compressed - cp -p arch/alpha/boot/vmlinux.gz %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor - image=vmlinuz -%endif -%ifarch ppc ppc64 - add_vmlinux - chmod 644 %buildroot/boot/vmlinux-%kernelrelease-%build_flavor - image=vmlinux -%endif -%ifarch ia64 - add_vmlinux --compressed - mv %buildroot/boot/vmlinux-%kernelrelease-%build_flavor.gz \ - %buildroot/boot/vmlinuz-%kernelrelease-%build_flavor - image=vmlinuz -%endif -%ifarch s390 s390x - add_vmlinux --compressed - cp -p arch/s390/boot/image %buildroot/boot/image-%kernelrelease-%build_flavor - image=image - if [ -x "$(which dwarfextract 2>/dev/null)" ] ; then - dwarfextract vmlinux %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor || echo "dwarfextract failed ($?)" - fi -%if %CONFIG_KMSG_IDS == "y" - mkdir -p %buildroot/usr/share/man/man9 - find man -name '*.9' -exec install -m 644 -D '{}' %buildroot/usr/share/man/man9/ ';' -%endif -%endif - if [ -e init/kerntypes.o ]; then - cp init/kerntypes.o %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor - fi -# end of build_kdump -%endif -for sub in '-base' '' '-extra'; do - case "$sub" in - '-base' | '') base_package=1 ;; - *) base_package=0 ;; - esac - for script in preun postun pre post devel-pre devel-post; do - sed -e "s:@KERNELRELEASE@:%kernelrelease:g" \ - -e "s:@IMAGE@:$image:g" \ - -e "s:@FLAVOR""@:%build_flavor:g" \ - -e "s:@SUBPACKAGE@:%name$sub:g" \ - -e "s:@BASE_PACKAGE@:$base_package:g" \ - -e "s:@RPM_VERSION_RELEASE@:%version-%release:g" \ - -e "s:@RPM_TARGET_CPU@:%_target_cpu:g" \ - -e "s:@CPU_ARCH_FLAVOR@:%cpu_arch_flavor:g" \ - -e "s:@SRCVARIANT@:%variant:g" \ - %_sourcedir/$script.sh > %my_builddir/$script$sub.sh - done -done -%if %build_kdump || %build_xen || %build_vanilla || %build_ps3 -# keep this -suffix list in sync with post.sh and postun.sh -suffix=-%build_flavor -%endif -ln -s $image$suffix %buildroot/boot/$image$suffix -ln -s initrd$suffix %buildroot/boot/initrd$suffix -cp .config %buildroot/boot/config-%kernelrelease-%build_flavor -%if %install_vdso -# Install the unstripped vdso's that are linked in the kernel image -make vdso_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot -%endif -# Create a dummy initrd with roughly the size the real one will have. -# That way, YaST will know that this package requires some additional -# space in /boot. -dd if=/dev/zero of=%buildroot/boot/initrd-%kernelrelease-%build_flavor \ - bs=1024 seek=2047 count=1 -if [ %CONFIG_MODULES = y ]; then - mkdir -p %rpm_install_dir/%cpu_arch_flavor - mkdir -p %buildroot/usr/src/linux-obj/%cpu_arch - ln -s %build_flavor %buildroot/usr/src/linux-obj/%cpu_arch_flavor - gzip -c9 < Module.symvers > %buildroot/boot/symvers-%kernelrelease-%build_flavor.gz - make modules_install $MAKE_ARGS INSTALL_MOD_PATH=%buildroot - if ! %_sourcedir/check-supported-list \ - %_sourcedir %buildroot/lib/modules/%kernelrelease-%build_flavor; then -%if %supported_modules_check - exit 1 -%endif - echo "Consistency check error: please update supported.conf." - fi -%ifarch s390 s390x - if [ -x "$(which dwarfextract 2>/dev/null)" -a \ - -f %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor ] ; then - find %buildroot -name "*.ko" > kofiles.list - dwarfextract %buildroot/boot/Kerntypes-%kernelrelease-%build_flavor -C kofiles.list || echo "dwarfextract failed ($?)" - fi -%endif - # Also put the resulting file in %rpm_install_dir/%cpu_arch/%build_flavor - # so that kernel-source + kernel-%build_flavor is sufficient for building - # modules that have modversions as well. - mkdir -p %rpm_install_dir/%cpu_arch/%build_flavor - cp Module.symvers %rpm_install_dir/%cpu_arch/%build_flavor - # Table of types used in exported symbols (for modversion debugging). - %_sourcedir/modversions --pack . > %buildroot/boot/symtypes-%kernelrelease-%build_flavor - if [ -s %buildroot/boot/symtypes-%kernelrelease-%build_flavor ]; then - gzip -9 %buildroot/boot/symtypes-%kernelrelease-%build_flavor - else - rm -f %buildroot/boot/symtypes-%kernelrelease-%build_flavor - fi - # Some architecture's $(uname -m) output is different from the ARCH - # parameter that needs to be passed to kbuild. Create symlinks from - # $(uname -m) to the ARCH directory. - if [ ! -e %rpm_install_dir/%_target_cpu ]; then - ln -sf %cpu_arch %rpm_install_dir/%_target_cpu - ln -sf %cpu_arch %buildroot/usr/src/linux-obj/%_target_cpu - fi - # We were building in %my_builddir/linux-%srcversion, but the sources will - # later be installed in /usr/src/linux-%srcversion-%source_rel. Fix up the - # build symlink. - rm -f %buildroot/lib/modules/%kernelrelease-%build_flavor/{source,build} - ln -s %src_install_dir \ - %buildroot/lib/modules/%kernelrelease-%build_flavor/source - ln -s %obj_install_dir/%cpu_arch/%build_flavor \ - %buildroot/lib/modules/%kernelrelease-%build_flavor/build - # Abort if there are any undefined symbols - msg="$(/sbin/depmod -F %buildroot/boot/System.map-%kernelrelease-%build_flavor \ - -b %buildroot -ae %kernelrelease-%build_flavor 2>&1)" - if [ $? -ne 0 ] || echo "$msg" | grep 'needs unknown symbol'; then - exit 1 - fi -%if %split_base - %_sourcedir/split-modules -d %buildroot \ - -o %my_builddir \ - -b %kernel_build_dir/Module.base \ - -s %kernel_build_dir/Module.supported -%if ! %split_extra - cat %my_builddir/unsupported-modules >>%my_builddir/main-modules -%endif -%else - ( cd %buildroot - find lib/modules/%kernelrelease-%build_flavor -type f -name '*.ko' -printf '/%%p\n' - ) > %my_builddir/base-modules -%endif - res=0 - if test -e %my_builddir/kabi/%cpu_arch/symvers-%build_flavor; then - # check for kabi changes - %_sourcedir/kabi.pl --rules %my_builddir/kabi/severities \ - %my_builddir/kabi/%cpu_arch/symvers-%build_flavor \ - Module.symvers || res=$? - fi - if [ $res -ne 0 ]; then - if [ ! -e %my_builddir/kabi/%cpu_arch/ignore-%build_flavor -a \ - ! -e %_sourcedir/IGNORE-KABI-BADNESS ]; then - echo "Create a file IGNORE-KABI-BADNESS in the kernel-source" \ - "directory to build this kernel even though its badness is" \ - "higher than allowed for an official kernel." - exit 1 - fi - fi - tar cf - -T %my_builddir/obj-files | \ - tar xf - -C %rpm_install_dir/%cpu_arch_flavor - # bnc#507084 - find %rpm_install_dir/%cpu_arch_flavor/scripts -type f -perm -111 | \ - while read f; do - case "$(file -b "$f")" in - ELF\ *\ executable*) - strip "$f" - esac - done - # Replace the absolute with a relative path - sed -i "s,%build_src_dir,../../../linux-%kernelrelease%variant,g" \ - %rpm_install_dir/%cpu_arch_flavor/Makefile - link=%rpm_install_dir/%cpu_arch_flavor/include2/asm - target=$(readlink "$link") - target=${target#%build_src_dir/} - rm "$link" - ln -s ../../../../linux-%kernelrelease%variant/"$target" "$link" -fi -add_dirs_to_filelist() { - sed -rn ' - # print file name - p - # remove filelist macros - s:%%%%[a-z]+(\([^)]+\))? ?::g - # add %%%%dir prefix - s:^:%%%%dir : - # print all parents - :a - # skip directories owned by other packages - s:^%%%%dir (/boot|/etc|/lib/(modules|firmware)|/usr/src)/[^/]+$:: - s:/[^/]+$::p - ta - ' "$@" | sort -u -} -# Collect the file lists. -shopt -s nullglob -> %my_builddir/kernel-devel.files -for file in %buildroot/boot/vmlinux-*.gz %buildroot/boot/symtypes* \ - %buildroot/lib/modules/*/{build,source}; do - f=${file##%buildroot} - echo "$f" >> %my_builddir/kernel-devel.files -done -{ cd %buildroot - find boot \ - \( -type l -o -name 'initrd-*' \) -printf '%%%%%%%%ghost /%%p\n' -o \ - -type f -printf '/%%p\n' - # Add the auto-generated (by mkdumprd) kdump initrd to %ghost so that - # the file gets removed when uninstalling the kernel. - echo '%%%%ghost /boot/initrd-%kernelrelease-kdump' - touch $RPM_BUILD_ROOT/boot/initrd-%kernelrelease-kdump - if [ %CONFIG_MODULES = y ]; then - find lib/modules/%kernelrelease-%build_flavor \ - -type d -o \ - \( -path '*/modules.*' ! -path '*/modules.order' \ - ! -path '*/modules.builtin' \) -printf '%%%%%%%%ghost /%%p\n' \ - -o -name '*.ko' -prune -o -printf '/%%p\n' - cat %my_builddir/base-modules - fi - test -d lib/firmware/%kernelrelease-%build_flavor && \ - find lib/firmware/%kernelrelease-%build_flavor \ - -type d -o \ - -printf '/%%p\n' - if [ -e .%_docdir/%name ]; then - echo "%%%%doc %_docdir/%name" - fi -} | sort -u >%my_builddir/tmp -cat %my_builddir/tmp %my_builddir/kernel-devel.files | sort | uniq -u | \ - add_dirs_to_filelist >%my_builddir/kernel-base.files -rm %my_builddir/tmp -%if %split_base - add_dirs_to_filelist %my_builddir/{kernel-base.files,main-modules} \ - > %my_builddir/kernel-main.files -%endif -%if %split_extra - add_dirs_to_filelist %my_builddir/unsupported-modules > %my_builddir/kernel-extra.files -%endif -# Hardlink duplicate files automatically (from package fdupes): It doesn't save -# much, but it keeps rpmlint from breaking the package build. -%fdupes $RPM_BUILD_ROOT - -%preun -f preun.sh - -%postun -f postun.sh - -%pre -f pre.sh - -%post -f post.sh -%if %split_base - -%files -f kernel-main.files -%else - -%files -f kernel-base.files -%endif -%defattr(-, root, root) - -%package base -Summary: The Xen Kernel - base modules -License: GPLv2 -Group: System/Kernel -Url: http://www.kernel.org/ -AutoReqProv: on -Provides: multiversion(kernel) -Provides: kernel-base = %version-%source_rel -Requires(pre): coreutils awk -Requires(post): module-init-tools -Requires(post): perl-Bootloader -Requires(post): mkinitrd -%ifarch %ix86 -Conflicts: libc.so.6()(64bit) -%endif - -%description base -The Linux kernel for Xen paravirtualization. - -This kernel can be used both as the domain0 ("xen0") and as an -unprivileged ("xenU") kernel. - -This package contains only the base modules, required in all installs. - - -%source_timestamp -%preun base -f preun-base.sh - -%postun base -f postun-base.sh - -%pre base -f pre-base.sh - -%post base -f post-base.sh -%if %split_base - -%files base -f kernel-base.files -%defattr(-, root, root) -%endif - -%package extra -Summary: The Xen Kernel - Unsupported kernel modules -License: GPLv2 -Group: System/Kernel -Url: http://www.kernel.org/ -AutoReqProv: on -Provides: multiversion(kernel) -Provides: %name-extra_%_target_cpu = %version-%release -Provides: kernel-extra = %version-%source_rel -Requires: %{name}_%_target_cpu = %version-%release -Requires(pre): coreutils awk -Requires(post): module-init-tools -Requires(post): perl-Bootloader -Requires(post): mkinitrd -Supplements: packageand(product(SUSE_SLED):%{name}_%_target_cpu) -%ifarch %ix86 -Conflicts: libc.so.6()(64bit) -%endif - -%description extra -The Linux kernel for Xen paravirtualization. - -This kernel can be used both as the domain0 ("xen0") and as an -unprivileged ("xenU") kernel. - -This package contains additional modules not supported by Novell. - - -%source_timestamp -%preun extra -f preun-extra.sh - -%postun extra -f postun-extra.sh - -%pre extra -f pre-extra.sh - -%post extra -f post-extra.sh -%if %split_extra - -%files extra -f kernel-extra.files -%defattr(-, root, root) -%endif -%if %CONFIG_KMSG_IDS == "y" - -%package man -Summary: The collection of man pages generated by the kmsg script. -License: GPLv2 -Group: System/Kernel - -%description man -This package includes the man pages that have been generated from the -kmsg message documentation comments. - - -%source_timestamp -%files man -%defattr(-,root,root) -/usr/share/man/man9/* -%endif - -%package devel -Summary: Development files necessary for building kernel modules -License: GPLv2 -Group: Development/Sources -Provides: multiversion(kernel) -Provides: %name-devel = %version-%source_rel -Requires: kernel-source%variant = %version-%source_rel -AutoReqProv: on - -%description devel -This package contains files necessary for building kernel modules (and -kernel module packages) against the %build_flavor flavor of the kernel. - - -%source_timestamp -%if %CONFIG_MODULES == "y" - -%pre devel -f devel-pre.sh - -%post devel -f devel-post.sh - -%files devel -f kernel-devel.files -%defattr(-,root,root) -%dir %obj_install_dir -%dir %obj_install_dir/%cpu_arch -%dir /usr/src/linux-obj -%dir /usr/src/linux-obj/%cpu_arch -%ghost /usr/src/linux-obj/%cpu_arch_flavor -%obj_install_dir/%cpu_arch_flavor -%if %_target_cpu != %cpu_arch -%obj_install_dir/%_target_cpu -/usr/src/linux-obj/%_target_cpu -%endif -%endif - -%package devel-debuginfo -# rpm doesn't notice that vmlinux.debug belongs to the gzipped vmlinux.gz -Summary: Debug information for package %name-devel -License: GPLv2 -Group: Development/Debug - -%description devel-debuginfo -Debug information for package %name-devel - - -%source_timestamp -%if %extract_vmlinux_debuginfo - -%files devel-debuginfo -f vmlinux.debug.files -%endif - -%changelog diff --git a/mkspec b/mkspec index 22bad1c..84221fe 100644 --- a/mkspec +++ b/mkspec @@ -82,6 +82,9 @@ for my $flavor (sort keys(%flavor_archs)) { # kernel-source.spec do_spec('source', "kernel-source$variant.spec", %macros); +# kernel-docs.spec +do_spec('docs', "kernel-docs$variant.spec", %macros); + # kernel-syms.spec { my $requires = ""; @@ -128,7 +131,7 @@ sub parse_config_conf { sub read_spec_templates { my %res; - for my $template qw(binary source syms) { + for my $template qw(binary source syms docs) { xopen(my $fh, '<', "$dir/kernel-$template.spec.in"); my @lines = <$fh>; $res{$template} = join("", @lines); diff --git a/package-descriptions b/package-descriptions index f438b7e..b885d55 100644 --- a/package-descriptions +++ b/package-descriptions @@ -109,3 +109,8 @@ The Linux kernel for Xen paravirtualization. This kernel can only be used both as an unprivileged ("xenU") kernel (for Amazon EC2). +=== kernel-vmi === +VMI-enabled kernel + +The Linux Kernel designed to run on top of a virtual machine +interface layer (VMI). diff --git a/patches.apparmor.tar.bz2 b/patches.apparmor.tar.bz2 index e6d6114..ba571e7 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:907f560381997ee337da14cab62c839021d54860b5b8c912f3b1a644778efae1 -size 37380 +oid sha256:7257079b49ddb8fc7646dff3594b2b74892b5853c85402da1923476347333118 +size 48781 diff --git a/patches.arch.tar.bz2 b/patches.arch.tar.bz2 index ac977cb..7dfc552 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:323a85cfe94d707b96999ada3c2de7d4e1b36bd8814adb3226033cb247d29535 -size 109052 +oid sha256:82c1962b481cc6b8acd84205609bba3e7ea1eba57742f22dd5c50fbbe0681e87 +size 98397 diff --git a/patches.drivers.tar.bz2 b/patches.drivers.tar.bz2 index 7753b4e..4551b9b 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:eaee60e4cb9e6eebcc06bf5aaa351cd3e39de0fd1ec72d5c2315f4515f108eba -size 185918 +oid sha256:07fb0573e5c37211121b407203590dadec59186da4b6d408889f41ef40e0b783 +size 154102 diff --git a/patches.fixes.tar.bz2 b/patches.fixes.tar.bz2 index 602e8cb..f7bd9a5 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:2c6c722577f06ed4845b1f8c59c4cb3e2b9e7054857d2b90c9b4e4efb12cdf60 -size 56550 +oid sha256:62d55b0c75bb847c54893d61c49a8c0771f80d138d8307eb449ada97e97210be +size 38989 diff --git a/patches.kernel.org.tar.bz2 b/patches.kernel.org.tar.bz2 index d24bdeb..abc7432 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:9dde5510f9ad1aef9c1f1d3b2a8099a006fe55fdab5ebcf2c141624b999d057e -size 136 +oid sha256:f7c8978008044b92120e40e4e9b840b38c8b32ed54b36db3aaf748363ba59faf +size 10522777 diff --git a/patches.rpmify.tar.bz2 b/patches.rpmify.tar.bz2 index 8a87b52..e51b6f1 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:0557a514bd746d55210a6b3ed03e17f320449e28767b405b635f493f3ec6a316 -size 7144 +oid sha256:d191871079b5790dc31ec9996b864f0c8bc68cadc55970fd4d3d5b030395af14 +size 7763 diff --git a/patches.suse.tar.bz2 b/patches.suse.tar.bz2 index 06afb40..364d707 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:a64fb8715a4facc1ef7ef3a1aa60215bc0155d32e849fcc1a12eeda931fb0c1f -size 1174632 +oid sha256:c454e2f82b14ec761dfae05c3e966473e2c03b742d7d250d8c7a066a9077c044 +size 1075084 diff --git a/patches.trace.tar.bz2 b/patches.trace.tar.bz2 index c6b3dcd..90f502e 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:d3cba097dfa4134f9ff373805a8c8069b53a2a67fb7efa9e0a0d15c3aff71630 -size 44563 +oid sha256:91896949fbb848a2969d20a14d390ed65a83b461756faebc7370dd5a3c06736e +size 44494 diff --git a/patches.xen.tar.bz2 b/patches.xen.tar.bz2 index 9e89aae..4b57277 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:8cc518fb6dacd899475bb0f88020b72acf2157505e771cc391871f38c5653719 -size 1882770 +oid sha256:4bd03fde297c3b4b748ce8a976e6d3644d35850eea77b3861e2f0b4458335db1 +size 1900316 diff --git a/series.conf b/series.conf index 90ac114..bec569c 100644 --- a/series.conf +++ b/series.conf @@ -27,23 +27,32 @@ # DO NOT MODIFY THEM! # Send separate patches upstream if you find a problem... ######################################################## + patches.kernel.org/patch-2.6.33-rc3 + patches.kernel.org/patch-2.6.33-rc3-rc4 + patches.kernel.org/patch-2.6.33-rc4-rc5 ######################################################## # Build fixes that apply to the vanilla kernel too. - # They must be placed in patches.kernel.org to be - # picked up for the -vanilla flavor. This is cheating, - # since they're not actually upstream, but if the - # packages don't build, that's pretty useless too. + # Patches in patches.rpmify are applied to both -vanilla + # and patched flavors. ######################################################## - patches.rpmify/psmouse-section-conflict.diff - patches.rpmify/ipmi-section-conflict.diff - patches.rpmify/md-section-conflict - patches.rpmify/gdth-section-conflict - patches.rpmify/arch-include-asm-fixes - patches.rpmify/arm-arch_include_asm-fix.diff patches.rpmify/tsi148-dependency - patches.rpmify/staging-missing-sched.h patches.rpmify/ia64-sn-fix-percpu-warnings + patches.rpmify/rtl8192u-dont-use-mhard-float + patches.rpmify/tioca-fix-assignment-from-incompatible-pointer-warnings + patches.rpmify/ia64-mca-fix-cast-from-integer-to-pointer-warning + patches.rpmify/otus-fix-assignment-makes-integer-from-pointer-without-a-cast-warnings + + patches.rpmify/rt2860-use-skb_tail_pointer + patches.rpmify/rtl8192e-use-skb_tail_pointer + + patches.rpmify/smsc47m1-fix-section-mismatch + patches.rpmify/hugetlbfs-fix-section-mismatches + patches.rpmify/rtl8192e-fix-section-mismatches + patches.rpmify/dmar-fix-section-mismatch + patches.rpmify/hpsa-fix-section-mismatch + patches.rpmify/rt2860-fix-section-mismatches + patches.rpmify/ppc-crashdump-typefix ######################################################## # kABI consistency patches @@ -59,7 +68,6 @@ # will be included in the vanilla package. ######################################################## patches.rpmify/firmware-path - patches.rpmify/no-include-asm patches.rpmify/rpm-kernel-config patches.rpmify/split-package @@ -74,8 +82,6 @@ patches.suse/supported-flag-enterprise patches.fixes/kbuild-fix-generating-of-.symtypes-files patches.suse/genksyms-add-override-flag.diff - patches.suse/kbuild-generate-modules.builtin - patches.suse/kbuild-rebuild-fix-for-Makefile.modbuiltin patches.suse/kconfig-automate-kernel-desktop ######################################################## @@ -85,59 +91,42 @@ patches.suse/kvm-as-kmp patches.suse/export-release_open_intent patches.suse/export-security_inode_permission - patches.suse/export-sync_page_range ++still_needed-33? patches.suse/export-sync_page_range ######################################################## # Bug workarounds for binutils ######################################################## - patches.suse/s390-System.map.diff - patches.arch/s390-message-catalog.diff - - patches.arch/s390-01-qeth-isolation.patch - - patches.arch/s390-02-01-cex3-init-msg.patch - patches.arch/s390-02-02-cex3-special-command.patch - patches.arch/s390-02-03-cex3-device.patch - patches.arch/s390-02-04-cex3-use-def.patch - patches.arch/s390-02-05-zcrypt-speed-cex2c.patch - patches.arch/s390-02-06-zcrypt-speed-cex3.patch ######################################################## # Scheduler / Core ######################################################## -+needs_update-32 patches.suse/smtnice-disable patches.suse/setuid-dumpable-wrongdir patches.fixes/seccomp-disable-tsc-option patches.suse/hung_task_timeout-configurable-default ++needs_update-33 patches.suse/sched-revert-latency-defaults # writable limits - patches.suse/rlim-0001-SECURITY-selinux-fix-update_rlimit_cpu-parameter.patch - patches.suse/rlim-0002-SECURITY-add-task_struct-to-setrlimit.patch - patches.suse/rlim-0003-core-add-task_struct-to-update_rlimit_cpu.patch - patches.suse/rlim-0004-sys_setrlimit-make-sure-rlim_max-never-grows.patch - patches.suse/rlim-0005-core-split-sys_setrlimit.patch - patches.suse/rlim-0006-core-allow-setrlimit-to-non-current-tasks.patch - patches.suse/rlim-0007-core-optimize-setrlimit-for-current-task.patch - patches.suse/rlim-0008-FS-proc-make-limits-writable.patch - patches.suse/rlim-0009-core-posix-cpu-timers-cleanup-rlimits-usage.patch - patches.suse/rlim-0010-core-do-security-check-under-task_lock.patch - patches.suse/rlim-0011-resource-add-helpers-for-fetching-rlimits.patch - patches.suse/rlim-0012-IA64-use-helpers-for-rlimits.patch - patches.suse/rlim-0013-PPC-use-helpers-for-rlimits.patch - patches.suse/rlim-0014-S390-use-helpers-for-rlimits.patch - patches.suse/rlim-0015-SPARC-use-helpers-for-rlimits.patch - patches.suse/rlim-0016-X86-use-helpers-for-rlimits.patch - patches.suse/rlim-0017-FS-use-helpers-for-rlimits.patch - patches.suse/rlim-0018-MM-use-helpers-for-rlimits.patch - patches.suse/rlim-0019-core-use-helpers-for-rlimits.patch - patches.suse/rlim-0020-misc-use-helpers-for-rlimits.patch - patches.suse/rlim-0021-core-rename-setrlimit-to-do_setrlimit.patch - patches.suse/rlim-0022-core-implement-getprlimit-and-setprlimit-syscalls.patch - patches.suse/rlim-0023-unistd-add-__NR_-get-set-prlimit-syscall-numbers.patch - patches.suse/rlim-0024-COMPAT-add-get-put_compat_rlimit.patch - patches.suse/rlim-0025-x86-add-ia32-compat-prlimit-syscalls.patch - + patches.suse/rlim-0005-core-posix-cpu-timers-cleanup-rlimits-usage.patch + patches.suse/rlim-0008-SPARC-use-helpers-for-rlimits.patch + patches.suse/rlim-0009-X86-use-helpers-for-rlimits.patch + patches.suse/rlim-0010-FS-use-helpers-for-rlimits.patch + patches.suse/rlim-0011-MM-use-helpers-for-rlimits.patch + patches.suse/rlim-0012-core-use-helpers-for-rlimits.patch + patches.suse/rlim-0013-infiniband-use-helpers-for-rlimits.patch + patches.suse/rlim-0014-ipc-use-helpers-for-rlimits.patch + patches.suse/rlim-0015-SECURITY-add-task_struct-to-setrlimit.patch + patches.suse/rlim-0016-core-add-task_struct-to-update_rlimit_cpu.patch + patches.suse/rlim-0017-sys_setrlimit-make-sure-rlim_max-never-grows.patch + patches.suse/rlim-0018-core-split-sys_setrlimit.patch + patches.suse/rlim-0019-core-allow-setrlimit-to-non-current-tasks.patch + patches.suse/rlim-0020-core-optimize-setrlimit-for-current-task.patch + patches.suse/rlim-0021-FS-proc-switch-limits-reading-to-fops.patch + patches.suse/rlim-0022-FS-proc-make-limits-writable.patch + patches.suse/rlim-0023-core-do-security-check-under-task_lock.patch + patches.fixes/make-note_interrupt-fast.diff + patches.fixes/twl6030-fix-note_interrupt-call + ######################################################## # Architecture-specific patches. These used to be all @@ -150,7 +139,6 @@ # ia64 ######################################################## patches.fixes/ia64-sparse-fixes.diff - patches.fixes/nr-irqs-file patches.arch/mm-avoid-bad-page-on-lru patches.arch/ia64-page-migration patches.arch/ia64-page-migration.fix @@ -165,20 +153,16 @@ # 'Intel(r) Extended Memory 64 Technology' | 'Intel(r) EM64T' # x64 # Intel 64 - # "the architecture with too many names" + # "the architecture with too many names" # TAWTMN ######################################################## # x86_64/i386 biarch ######################################################## patches.arch/x86-hpet-pre-read - patches.arch/x86_64-hpet-64bit-timer.patch ++needs_update-33 patches.arch/x86_64-hpet-64bit-timer.patch - patches.arch/add_support_for_hpet_msi_intr_remap.patch - patches.arch/add_x86_support_for_hpet_msi_intr_remap.patch - patches.arch/x86-crypto-pclmulqdq-accelerated-implementation.patch - patches.arch/x86-crypto-add-ghash-algorithm-test.patch - patches.arch/x86-fix-nodac + patches.fixes/crypto-testmgr-fix-complain-about-lacking-test.patch patches.arch/x86-mcp51-no-dac patches.arch/kvm-split-paravirt-ops-by-functionality @@ -186,15 +170,36 @@ patches.arch/kvm-split-the-KVM-pv-ops-support-by-feature patches.arch/kvm-replace-kvm-io-delay-pv-ops-with-linux-magic - patches.arch/x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata - patches.arch/x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata - patches.arch/x86-64-add-comment-for-rodata-large-page-retainment + patches.suse/x86-mark_rodata_rw.patch + patches.fixes/dmar-fix-oops-with-no-dmar-table + + ######################################################## + # x86 MCE/MCA (Machine Check Error/Architecture) extensions + ######################################################## + + # Needed on Boxboro/Westmere-EX to correctly decode the physical + # address of correctable errors + patches.arch/x86_mce_intel_decode_physical_address.patch + patches.arch/x86_mce_intel_decode_physical_address_rename_fix.patch + patches.arch/x86_mce_intel_decode_physical_address_compile_fix.patch ######################################################## # x86_64/4096CPUS - from SGI ######################################################## patches.arch/x86-apic-force-bigsmp-apic-on-IBM-EXA3-4.patch + ######################################################## + # x86 UV patches from SGI + ######################################################## + patches.arch/bug-561939_uv_bios_call_hwperf_updated.patch + + # bug 566745 + patches.arch/UV-Expose-irq_desc-node-in-proc.patch + + ######################################################## + # x86_64/i386 depending on the UV patchset + ######################################################## + ######################################################## # powerpc/generic ######################################################## @@ -225,17 +230,6 @@ patches.fixes/ptrace-getsiginfo patches.arch/ppc-ipic-suspend-without-83xx-fix patches.arch/ppc-vmcoreinfo.diff - patches.arch/ppc-select - - patches.arch/ppc-extended_h_cede-kernel-dlpar - patches.arch/ppc-extended_h_cede-mv_of_drconf_cell - patches.arch/ppc-extended_h_cede-Export_memory_sysdev_class - patches.arch/ppc-extended_h_cede-memory-dlpar - patches.arch/ppc-extended_h_cede-cpu-dlpar - patches.arch/ppc-extended_h_cede-new_cede_processor - patches.arch/ppc-extended_h_cede-add_offline_states - patches.arch/ppc-extended_h_cede-node_offline_online_cpus - patches.arch/ppc-extended_h_cede-add_driver_lock ######################################################## # PS3 @@ -246,8 +240,18 @@ ######################################################## patches.arch/s390-add-FREE_PTE_NR -+needs_update-32 patches.arch/s390-08-02-zfcp-gpn-align-fix.diff + patches.suse/s390-System.map.diff + patches.arch/s390-message-catalog.diff + patches.arch/kmsg-fix-parameter-limitations + patches.arch/s390-03-qeth-hs-traffic-analyzer.patch + + patches.suse/s390-Kerntypes.diff + + patches.arch/s390-05-13-qeth-blkt-defaults.patch + + patches.arch/s390-06-01-zfcp-introduce-bsg-timeout-callback.patch ++needs_update-33 patches.arch/s390-06-02-zfcp-set-hw-timeout-requested-by-bsg.patch ######################################################## # VM/FS patches @@ -261,14 +265,21 @@ +needs_update-32 patches.suse/osync-error patches.fixes/remount-no-shrink-dcache -+needs_update-32 patches.suse/reiser4-sync_inodes patches.suse/reiser4-set_page_dirty_notag patches.suse/file-capabilities-disable-by-default.diff - patches.suse/unlock_page-speedup.patch patches.suse/files-slab-rcu.patch patches.suse/mm-tune-dirty-limits.patch + patches.suse/mm-devzero-optimisation.patch + + patches.fixes/aggressive-zone-reclaim.patch + patches.suse/readahead-request-tunables.patch + + ######################################################## + # IPC patches + ######################################################## + ######################################################## # nfsacl protocol (agruen) ######################################################## @@ -293,8 +304,9 @@ patches.arch/acpi_thinkpad_introduce_acpi_root_table_boot_param.patch +trenn patches.suse/acpi-dsdt-initrd-v0.9a-2.6.25.patch - patches.suse/init-move-populate_rootfs-back-to-start_kernel - patches.suse/acpi-generic-initramfs-table-override-support ++jeffm patches.suse/add-initramfs-file_read_write ++jeffm patches.suse/init-move-populate_rootfs-back-to-start_kernel ++jeffm patches.suse/acpi-generic-initramfs-table-override-support patches.arch/acpi_thermal_passive_blacklist.patch patches.arch/acpi-export-hotplug_execute @@ -309,7 +321,7 @@ patches.arch/acpi_srat-pxm-rev-store.patch patches.arch/acpi_srat-pxm-rev-ia64.patch patches.arch/acpi_srat-pxm-rev-x86-64.patch - + patches.arch/x86_node_hotplug_parse_srat_fix_2nd_ver.patch ######################################################## # CPUFREQ @@ -327,6 +339,10 @@ # patches.suse/cpuidle-documentation patches.fixes/cpufreq_ondemand_performance_optimise_default_settings.patch + # PCC -> HP's cpufreq driver + patches.drivers/cpufreq_ondemand_limit_fix.patch + patches.drivers/cpufreq_processor_clocking_control_pcc_driver.patch + ######################################################## # AGP, graphics related stuff ######################################################## @@ -338,7 +354,7 @@ # TIOCGDEV - suse special patches.fixes/tiocgdev +still_needed? patches.suse/mm-increase-dirty-limits.patch - patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch ++needs_to_die-33 patches.suse/panic-on-io-nmi-SLE11-user-space-api.patch ######################################################## # Networking, IPv6 @@ -348,14 +364,12 @@ ######################################################## # NFS ######################################################## - patches.fixes/nfsd-acl.patch patches.fixes/nfs-slot-table-alloc - patches.fixes/nfs-honour-server-preferred-io-size patches.fixes/nfsd-05-sunrpc-cache-allow-thread-to-block-while-waiting-for.patch patches.fixes/nfsd-06-sunrpc-cache-retry-cache-lookups-that-return-ETIMEDO.patch patches.fixes/nfsd-07-nfsd-idmap-drop-special-request-deferal-in-favour-of.patch - patches.fixes/nfsd-09-fix-kabi + ######################################################## # lockd + statd ######################################################## @@ -385,10 +399,12 @@ # dlm ######################################################## patches.fixes/dlm-enable-debug.patch + patches.suse/64bytes_lvb_len.diff ######################################################## # ocfs2 ######################################################## + patches.suse/ocfs2-allocation-resrvations.patch ######################################################## @@ -402,6 +418,7 @@ patches.suse/xfs-dmapi-src patches.suse/xfs-dmapi-enable patches.suse/xfs-dmapi-xfs-enable + patches.suse/xfs-dmapi-re-add-flags-for-xfs_free_eofblocks patches.suse/xfs-nfsd-dmapi-aware patches.fixes/xfs-dmapi-fixes patches.fixes/xfs-redirty-ENOSPC.patch @@ -411,20 +428,19 @@ # novfs ######################################################## patches.suse/novfs-client-module + patches.suse/novfs-fix-debug-message.patch ######################################################## # other filesystem stuff ######################################################## - patches.suse/parser-match_string.diff patches.suse/fs-may_iops.diff patches.suse/fs-knows-MAY_APPEND.diff patches.suse/nfs4acl-common.diff patches.suse/nfs4acl-ext3.diff patches.suse/nfs4acl-ai.diff - patches.fixes/zisofs-large-pagesize-read.patch - + ######################################################## # Swap-over-NFS ######################################################## @@ -459,6 +475,8 @@ patches.suse/SoN-29-fix-swap_sync_page-race patches.suse/SoN-30-fix-uninitialized-var.patch + # don't want to rediff SoN until this gets more testing + patches.suse/slab-handle-memoryless-nodes-v2a.patch ######################################################## # Netfilter @@ -492,37 +510,29 @@ patches.drivers/libata-ata_piix-clear-spurious-IRQ patches.drivers/libata-ahci-aspire-3810t-noncq - patches.drivers/libata-missing-_SDD-is-not-an-error # Block layer fixes patches.fixes/scsi-inquiry-too-short-ratelimit patches.suse/scsi-netlink-ml - # from scsi-misc - patches.fixes/scsi-fc-class-failfast-bsg-requests - patches.fixes/scsi-add-scsi-target-reset-support-to-ioctl - patches.fixes/scsi-devinfo-update-hitachi-entries - patches.suse/modify-change_queue_depth-to-take-in-reason-why-it-is-being-called.patch - patches.suse/scsi-error-have-scsi-ml-call-change_queue_depth-to-handle-queue_full.patch - patches.suse/add-queue_depth-ramp-up-code.patch - patches.drivers/mpt-fusion-4.22.00.00-update - patches.drivers/hpsa - patches.fixes/scsi-fix-bug-with-dma-maps-on-nested-scsi-objects - patches.fixes/scsi-introduce-helper-function-for-blocking-eh patches.fixes/scsi-dh-queuedata-accessors patches.fixes/scsi-dh-alua-retry-UA patches.fixes/scsi-add-tgps-setting patches.fixes/scsi-dh-alua-send-stpg - patches.fixes/scsi_dh-change-activate-interface - patches.fixes/scsi_dh-make-rdac-handler-asynchronous - patches.fixes/scsi_dh-make-hp_sw-handler-asynchronous - patches.fixes/scsi_dh-make-alua-handler-asynchronous - patches.fixes/scsi_dh-always-attach-sysfs + patches.fixes/scsi-dh-emc-mode-select-10-size + patches.fixes/scsi-dh-emc-rw-mismatch + patches.fixes/scsi-dh-rdac-add-stk + patches.fixes/scsi-retry-alua-transition-in-progress + patches.suse/fc-transport-allow-dev_loss_tmo-disable patches.fixes/scsi-check-host-lookup-failure patches.drivers/aacraid-24701-update - patches.drivers/megaraid-04.12-update + patches.drivers/lpfc-add-raywire-id + patches.drivers/megaraid-mbox-fix-SG_IO + patches.drivers/qla4xxx-5.01.00-k9-5.01.00.00.11.01-k10.patch + patches.fixes/aic79xx-null-scb-in-nonpkt-busfree + patches.fixes/scsi-fc-class-allow-LLD-bsg-timeout # Remaining SCSI patches (garloff) patches.suse/scsi-error-test-unit-ready-timeout @@ -535,7 +545,7 @@ patches.fixes/sd_liberal_28_sense_invalid.diff patches.fixes/scsi-ibmvscsi-module_alias.patch - patches.fixes/megaraid_sas-fix-permissions-on-poll_mode_io + patches.fixes/scsi_debug-scale-virtual_gb-with-sector_size-properly ######################################################## # DRM/Video @@ -548,7 +558,7 @@ patches.suse/nameif-track-rename.patch patches.fixes/tg3-fix-default-wol.patch patches.drivers/ehea-modinfo.patch - patches.drivers/igb-add-support-for-82576NS-SerDes-adapter.patch + patches.fixes/tehuti-firmware-name # entropy FATE##307517 patches.drivers/bnx2-entropy-source.patch @@ -558,87 +568,15 @@ patches.drivers/ixgbe-entropy-source.patch patches.drivers/tg3-entropy-source.patch - patches.drivers/phy-broadcom-bug-fixes-for-sp1.patch - patches.drivers/tg3-update-version-to-3.104.patch - - patches.drivers/sky2-add-register-definitions - patches.drivers/sky2-88E8059-support - patches.drivers/sky2-optima-tcp-offload-fix patches.drivers/sky2-optima-fix-pci-cfg - #FCOE update (fate#306857, fate#306859, bnc#551175) - patches.suse/libfc-fix-typo-in-retry-check-on-received-prli.patch - patches.suse/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch - patches.suse/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch - patches.suse/libfc-fcoe-don-t-export_symbols-unnecessarily.patch - patches.suse/libfc-remove-unused-fc_lport-pointer-from-fc_fcp_pkt_abort.patch - patches.suse/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch - patches.suse/libfc-lport-fix-minor-documentation-errors.patch - patches.suse/libfc-don-t-warn_on-in-lport_timeout-for-reset-state.patch - patches.suse/libfc-removes-initializing-fc_cpu_order-and-fc_cpu_mask-per-lport.patch - patches.suse/libfc-adds-missing-exch-release-for-accepted-rrq.patch - patches.suse/libfc-removes-unused-disc_work-and-ex_list.patch - patches.suse/fcoe-initialize-return-value-in-fcoe_destroy.patch - patches.suse/fcoe-use-netif_f_fcoe_mtu-flag-to-set-up-max-frame-size-lport-mfs.patch - patches.suse/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch - patches.suse/fcoe-call-ndo_fcoe_enable-disable-to-turn-fcoe-feature-on-off-in-lld.patch - patches.suse/libfc-fix-memory-corruption-caused-by-double-frees-and-bad-error-handling.patch - patches.suse/libfc-fix-free-of-fc_rport_priv-with-timer-pending.patch - patches.suse/libfc-convert-to-scsi_track_queue_full.patch - patches.suse/fcoe-libfc-fix-an-libfc-issue-with-queue-ramp-down-in-libfc.patch - patches.suse/libfc-add-queue_depth-ramp-up.patch - patches.suse/fcoe-increase-fcoe_max_lun-to-0xffff-65535.patch - patches.suse/libfc-move-non-common-routines-and-prototypes-out-of-libfc-h.patch - patches.suse/libfc-remove-fc_fcp_complete.patch - patches.suse/libfc-add-libfc-fc_libfc-ch-for-libfc-internal-routines.patch - patches.suse/libfc-move-libfc_init-and-libfc_exit-to-fc_libfc-c.patch - patches.suse/libfc-changes-to-libfc_host_alloc-to-consolidate-initialization-with-allocation.patch - patches.suse/libfc-add-some-generic-npiv-support-routines-to-libfc.patch - patches.suse/libfc-vport-link-handling-and-fc_vport-state-managment.patch - patches.suse/libfc-libfcoe-fdisc-els-for-npiv.patch - patches.suse/libfcoe-fcoe-libfcoe-npiv-support.patch - patches.suse/fcoe-add-a-separate-scsi-transport-template-for-npiv-vports.patch - patches.suse/fcoe-npiv-vport-create-destroy.patch - patches.suse/libfc-rpn_id-is-obsolete-and-unnecessary.patch - patches.suse/libfc-rnn_id-may-be-required-before-rsnn_nn-with-some-switches.patch - patches.suse/libfc-register-symbolic-node-name-rsnn_nn.patch - patches.suse/libfc-register-symbolic-port-name-rspn_id.patch - patches.suse/libfc-combine-name-server-registration-response-handlers.patch - patches.suse/libfc-combine-name-server-registration-request-functions.patch - patches.suse/fcoe-vport-symbolic-name-support.patch - patches.suse/libfc-export-fc-headers.patch - patches.suse/libfc-add-routine-to-copy-data-from-a-buffer-to-a-sg-list.patch - patches.suse/libfc-fcoe-add-fc-passthrough-support.patch - patches.suse/libfc-formatting-cleanups-across-libfc.patch - patches.suse/libfcoe-formatting-and-comment-cleanups.patch - patches.suse/fcoe-formatting-cleanups-and-commenting.patch - patches.suse/fcoe-libfc-use-single-frame-allocation-api.patch - patches.suse/libfc-reduce-can_queue-for-all-fcp-frame-allocation-failures.patch - patches.suse/libfc-adds-can_queue-ramp-up.patch - patches.suse/libfcoe-allow-fip-to-be-disabled-by-the-driver.patch - patches.suse/libfcoe-fip-use-scsi-host-number-to-identify-debug-messages.patch - patches.suse/libfcoe-fip-allow-fip-receive-to-be-called-from-irq.patch - patches.suse/libfcoe-fip-should-report-link-to-libfc-whether-selected-or-not.patch - patches.suse/libfcoe-don-t-send-els-in-fip-mode-if-no-fcf-selected.patch - patches.suse/fcoe-remove-extra-function-decalrations.patch - patches.suse/fcoe-add-check-to-fail-gracefully-in-bonding-mode.patch - patches.suse/libfc-fix-rnn_id-smashing-skb-payload.patch - patches.suse/libfc-fix-symbolic-name-registrations-smashing-skb-data.patch - patches.suse/libfc-fix-fc_els_resp_type-to-correct-display-of-ct-responses.patch - patches.suse/libfc-add-set_fid-function-to-libfc-template.patch - patches.suse/libfc-add-host-number-to-lport-link-up-down-messages.patch - patches.suse/libfcoe-fcoe-simplify-receive-flogi-response.patch - patches.suse/libfc-register-fc4-features-with-the-fc-switch.patch - patches.suse/fcoe-fix-checking-san-mac-address.patch - patches.suse/fcoe-fix-getting-san-mac-for-vlan-interface.patch - patches.suse/fcoe-fix-setting-lport-s-wwnn-wwpn-to-use-san-mac-address.patch - patches.suse/libfc-do-not-use-did_no_connect-for-pkt-alloc-failures.patch - patches.suse/fcoe-fix-using-vlan-id-in-creating-lport-s-wwwn-wwpn.patch - patches.suse/libfc-fcoe-fixes-for-highmem-skb-linearize-panics.patch - patches.suse/libfc-fix-an-issue-of-pending-exch-es-after-i-f-destroyed-or-rmmod-fcoe.patch - patches.suse/libfcoe-do-not-pad-fip-keep-alive-to-full-frame-size.patch - patches.suse/libfc-fcoe-increase-els-and-ct-timeouts.patch + # qlge patches from 2.6.33 bnc#560420, fate#307130 + # These patches are not in 2.6.33 as of -rc3. + patches.drivers/qlge-0025-Add-performance-change-for-non-split-headers.patch + patches.drivers/qlge-0026-Add-firmware-core-dump.patch + patches.drivers/e1000-enhance-frame-fragment-detection.patch + patches.drivers/e1000e-enhance-frame-fragment-detection.patch ######################################################## # Wireless Networking @@ -648,12 +586,6 @@ ######################################################## # iSCSI ######################################################## - patches.fixes/bnx2i-use-common-iscsi-suspend-queue - patches.fixes/libiscsi-fix-login-text-checks-in-pdu-inject - patches.fixes/libiscsi-check-tmf-state-before-sending-pdu - patches.fixes/libiscsi-add-warm-target-reset-tmf-support - patches.fixes/iscsi-class-modify-handling-of-replacement-time - patches.fixes/iser-set-tgt-and-lu-reset-timeout ######################################################## # PCI and PCI hotplug @@ -677,34 +609,19 @@ ######################################################## patches.suse/bootsplash patches.suse/Cleanup-and-make-boot-splash-work-with-KMS.patch + patches.suse/bootsplash-keep-multiple-data + patches.suse/bootsplash-scaler patches.drivers/elousb.patch patches.fixes/input-add-acer-aspire-5710-to-nomux.patch - patches.fixes/hid-fixup-ncr-quirk.patch + patches.drivers/synaptics-hp-clickpad ########################################################## # Sound ########################################################## - patches.drivers/alsa-sp1-hda-01-select-ibexpeak-handler - patches.drivers/alsa-sp1-hda-02-vectorize-get_empty_pcm_device - patches.drivers/alsa-sp1-hda-03-allow-up-to-4-HDMI - patches.drivers/alsa-sp1-hda-04-convert-intelhdmi-global-references - patches.drivers/alsa-sp1-hda-05-remove-intelhdmi-dependency-on-multiout - patches.drivers/alsa-sp1-hda-06-use-pcm-prepare-callbacks-for-intelhdmi - patches.drivers/alsa-sp1-hda-07-reorder-intelhemi-prepare-callbacks - patches.drivers/alsa-sp1-hda-08-vectorize-intelhdmi - patches.drivers/alsa-sp1-hda-09-get-intelhtemi-max-channels - patches.drivers/alsa-sp1-hda-10-auto-parse-intelhdmi-cvt-pin - patches.drivers/alsa-sp1-hda-11-remove-static-intelhdmi-config - patches.drivers/alsa-sp1-hda-12-reset-pins-idt-codec-free - patches.drivers/alsa-sp1-hda-13-add-reboot-notifier - patches.drivers/alsa-sp1-hda-14-add-missing-export - patches.drivers/alsa-sp1-hda-15-fix-build-warning - patches.drivers/alsa-sp1-hda-16-stac-dual-headphones-fix - patches.drivers/alsa-sp1-hda-17-fix-mute-LED-sync-idt92h383xxx - patches.drivers/alsa-sp1-hda-18-msi-wind-u115-fix - patches.drivers/alsa-sp1-hda-19-cx5047-test-mode-fix - patches.drivers/alsa-sp1-hda-20-fsc-amilo-pi1505-fix - patches.drivers/alsa-sp1-hda-21-hp-dv3-position-fix-quirk + patches.drivers/alsa-sp1-hda-55-alc259-hp-pin-fix + patches.drivers/alsa-sp1-hda-56-realtek-eapd-fix + patches.drivers/alsa-sp1-hda-57-cx5051-toshiba-quirk + patches.drivers/alsa-sp1-hda-58-cx5051-lenovo-mute-fix ######################################################## # Other driver fixes @@ -718,8 +635,7 @@ # Allow setting maximum number of raw devices patches.suse/raw_device_max_minors_param.diff patches.suse/no-partition-scan - - patches.fixes/enclosure-fix-oops-while-iterating-enclosure_status-array + patches.fixes/pci-fix-nested-spinlock-hang-in-aer_inject.patch ######################################################## # Other drivers we have added to the tree @@ -734,6 +650,7 @@ ######################################################## patches.suse/dm-emulate-blkrrpart-ioctl patches.suse/dm-raid45_2.6.27_20081027.patch + patches.suse/dmraid45-dm_dirty_log_create-api-fix patches.fixes/dm-mpath-reattach-dh patches.suse/dm-mpath-leastpending-path-update patches.suse/dm-mpath-accept-failed-paths @@ -742,25 +659,65 @@ patches.fixes/dm-table-switch-to-readonly patches.suse/dm-mpath-evaluate-request-result-and-sense patches.fixes/dm-release-map_lock-before-set_disk_ro + patches.suse/dm-mpath-no-activate-for-offlined-paths + patches.suse/dm-mpath-no-partitions-feature ######################################################## # md ######################################################## - patches.drivers/8250_pnp-wacom-add - ########################################################## # # Security stuff # ########################################################## + ########################################################## + # Audit + ########################################################## + ########################################################## # AppArmor ########################################################## - patches.apparmor/apparmor.diff + patches.apparmor/apparmor-security-module + patches.apparmor/apparmor-default-lsm + patches.apparmor/apparmor-correct-mapping-of-file-permissions + patches.apparmor/apparmor-turn-auditing-of-ptrace-on + patches.apparmor/apparmor-fix-operator-precidence-issue-in-as_path_link + patches.apparmor/apparmor-explicitly-include-header-files-to-allow-apparmor-to-build-on-powerpc + patches.apparmor/apparmor-ensure-apparmor-enabled-parmater-is-off-if-apparmor-fails-to-initialize + patches.apparmor/apparmor-fix-auditing-of-domain-transitions-to-include-target-profile-information + patches.apparmor/apparmor-fix-c99-violation + patches.apparmor/apparmor-fix-build-failure-on-ia64 + patches.apparmor/apparmor-revert-reporting-of-create-to-write-permission + patches.apparmor/apparmor-fix-null-pointer-dereference-oops-in-profile-attachment + patches.apparmor/apparmor-fix-argument-size-missmatch-on-64-bit-builds + patches.apparmor/apparmor-fix-change_profile-failing-lpn401931 + patches.apparmor/apparmor-fix-determination-of-forced-audit-messages + patches.apparmor/apparmor-fix-oops-in-auditing-of-the-policy-interface-offset + patches.apparmor/apparmor-fix-profile-attachment-for-regexp-based-profile-names + patches.apparmor/apparmor-return-the-correct-error-codes-on-profile-addition-removal + patches.apparmor/apparmor-fix-oops-in-profile-listing-and-display-full-list + patches.apparmor/apparmor-fix-mapping-of-pux-to-new-internal-permission-format + patches.apparmor/apparmor-fix-change_profile-failure + patches.apparmor/apparmor-fix-profile-namespace-removal + patches.apparmor/apparmor-fix-oops-when-auditing-the-addition-of-profile-namespace + patches.apparmor/apparmor-fix-mediation-of-created-paths-that-look-like-deleted-paths + patches.apparmor/apparmor-fix-file-auditing-when-quiet-is-used + patches.apparmor/apparmor-policy-load-and-replacement-can-fail-to-alloc-mem + patches.apparmor/apparmor-fix-failure-to-audit-change_hat-correctly + + patches.apparmor/apparmor-allow-truncation-of-deleted-files + patches.apparmor/apparmor-fix-oops-after-profile-removal + patches.apparmor/apparmor-fix-oops-when-in-apparmor_bprm_set_creds + patches.apparmor/apparmor-fix-cap-audit_caching-preemption-disabling + patches.apparmor/apparmor-fix-refcounting-bug-causing-leak-of-creds-and-oops + patches.apparmor/apparmor-fix-leak-when-profile-transition-table-fails-unpack + patches.apparmor/apparmor-fully-close-race-condition-for-deleted-paths + + patches.apparmor/apparmor-missing-unlock patches.apparmor/ptrace_may_access-fix - patches.apparmor/security-default-lsm + patches.apparmor/apparmor-fix-security_ops-task_setrlimit-api-use ######################################################## # Address space layout randomization @@ -775,7 +732,10 @@ patches.suse/kdb-ia64 patches.suse/kdb-build-fixes patches.suse/kdb-x86-build-fixes - patches.suse/kdb_x86_fix_hang.patch + patches.suse/kdb-usb-rework + patches.suse/kdb_fix_ia64_build.patch + patches.suse/kdb_dont_touch_i8042_early.patch + patches.suse/kdb-fix-assignment-from-incompatible-pointer-warnings ######################################################## # Other patches for debugging @@ -788,26 +748,32 @@ ######################################################## # Kdump ######################################################## - patches.suse/kdump-dump_after_notifier.patch ++needs_update-33 patches.suse/kdump-dump_after_notifier.patch ######################################################## # cgroups ######################################################## patches.suse/cgroup-disable-memory.patch + ######################################################## + # audit subsystem + ######################################################## + patches.suse/audit-export-logging.patch + ######################################################## # Performance Monitoring, Tracing etc ######################################################## - - patches.suse/perfmon2.patch - patches.suse/perfmon2_ioctl.patch - patches.suse/perfmon2-remove_syscalls.patch - patches.suse/perfmon2-remove_get_base_syscall_attr.patch - patches.suse/perfmon2_noutrace.patch + ++needs_update-33 patches.suse/perfmon2.patch ++needs_update-33 patches.suse/perfmon2_ioctl.patch ++needs_update-33 patches.suse/perfmon2-remove_syscalls.patch ++needs_update-33 patches.suse/perfmon2-remove_get_base_syscall_attr.patch ++needs_update-33 patches.suse/perfmon2_noutrace.patch patches.fixes/oprofile_bios_ctr.patch patches.trace/lttng-instrumentation-irq.patch + patches.trace/powerpc-rename-irq-tracing patches.trace/lttng-instrumentation-softirq.patch patches.trace/lttng-instrumentation-kernel.patch patches.trace/lttng-instrumentation-filemap.patch @@ -823,8 +789,6 @@ patches.trace/lttng-instrumentation-fs.patch patches.trace/lttng-instrumentation-ipc.patch - patches.trace/ftrace-framepointer.diff - patches.trace/utrace-core +needs_update-32 patches.fixes/nfs-write.c-bug-removal.patch @@ -876,102 +840,115 @@ # re-basing to a newer xen tree. # ### both uml framebuffer and xen need this one. - patches.xen/add-console-use-vt ++xen_needs_update patches.xen/add-console-use-vt # split out patches - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch - patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch - patches.xen/ipv6-no-autoconf - patches.xen/pci-guestdev - patches.xen/pci-reserve - patches.xen/sfc-driverlink - patches.xen/sfc-resource-driver - patches.xen/sfc-driverlink-conditional - patches.xen/sfc-external-sram - patches.xen/tmem ++xen_needs_update patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-i386.patch ++xen_needs_update patches.xen/linux-2.6.19-rc1-kexec-move_segment_code-x86_64.patch ++xen_needs_update patches.xen/ipv6-no-autoconf ++xen_needs_update patches.xen/pci-guestdev ++xen_needs_update patches.xen/pci-reserve ++xen_needs_update patches.xen/sfc-driverlink ++xen_needs_update patches.xen/sfc-resource-driver ++xen_needs_update patches.xen/sfc-driverlink-conditional ++xen_needs_update patches.xen/sfc-external-sram ++xen_needs_update patches.xen/tmem # bulk stuff, new files for xen - patches.xen/xen3-auto-xen-arch.diff - patches.xen/xen3-auto-xen-drivers.diff - patches.xen/xen3-auto-include-xen-interface.diff ++xen_needs_update patches.xen/xen3-auto-xen-arch.diff ++xen_needs_update patches.xen/xen3-auto-xen-drivers.diff ++xen_needs_update patches.xen/xen3-auto-include-xen-interface.diff # kconfig bits for xen - patches.xen/xen3-auto-xen-kconfig.diff ++xen_needs_update patches.xen/xen3-auto-xen-kconfig.diff # common code changes - patches.xen/xen3-auto-common.diff - patches.xen/xen3-auto-arch-x86.diff - patches.xen/xen3-auto-arch-i386.diff - patches.xen/xen3-auto-arch-x86_64.diff ++xen_needs_update patches.xen/xen3-auto-common.diff ++xen_needs_update patches.xen/xen3-auto-arch-x86.diff ++xen_needs_update patches.xen/xen3-auto-arch-i386.diff ++xen_needs_update patches.xen/xen3-auto-arch-x86_64.diff # fixups due to upstream Xen parts - patches.xen/xen3-fixup-xen ++xen_needs_update patches.xen/xen3-fixup-xen - patches.xen/sfc-sync-headers - patches.xen/sfc-endianness ++xen_needs_update patches.xen/sfc-set-arch ++xen_needs_update patches.xen/sfc-endianness # newer changeset backports # changes outside arch/{i386,x86_64}/xen - patches.xen/xen3-fixup-kconfig - patches.xen/xen3-fixup-common - patches.xen/xen3-fixup-arch-x86 ++xen_needs_update patches.xen/xen3-fixup-kconfig ++xen_needs_update patches.xen/xen3-fixup-common ++xen_needs_update patches.xen/xen3-fixup-arch-x86 # ports of other patches - patches.xen/xen3-patch-2.6.18 - patches.xen/xen3-patch-2.6.19 - patches.xen/xen3-patch-2.6.20 - patches.xen/xen3-patch-2.6.21 - patches.xen/xen3-patch-2.6.22 - patches.xen/xen3-patch-2.6.23 - patches.xen/xen3-patch-2.6.24 - patches.xen/xen3-patch-2.6.25 - patches.xen/xen3-patch-2.6.26 - patches.xen/xen3-patch-2.6.27 - patches.xen/xen3-patch-2.6.28 - patches.xen/xen3-patch-2.6.29 - patches.xen/xen3-patch-2.6.30 - patches.xen/xen3-patch-2.6.31 - patches.xen/xen3-patch-2.6.32-rc4 - patches.xen/xen3-patch-2.6.32-rc4-rc5 - patches.xen/xen3-patch-2.6.32-rc5-rc6 - patches.xen/xen3-seccomp-disable-tsc-option - patches.xen/xen3-kdb-x86 - patches.xen/xen3-stack-unwind - patches.xen/xen3-x86_64-unwind-annotations ++xen_needs_update patches.xen/xen3-patch-2.6.18 ++xen_needs_update patches.xen/xen3-patch-2.6.19 ++xen_needs_update patches.xen/xen3-patch-2.6.20 ++xen_needs_update patches.xen/xen3-patch-2.6.21 ++xen_needs_update patches.xen/xen3-patch-2.6.22 ++xen_needs_update patches.xen/xen3-patch-2.6.23 ++xen_needs_update patches.xen/xen3-patch-2.6.24 ++xen_needs_update patches.xen/xen3-patch-2.6.25 ++xen_needs_update patches.xen/xen3-patch-2.6.26 ++xen_needs_update patches.xen/xen3-patch-2.6.27 ++xen_needs_update patches.xen/xen3-patch-2.6.28 ++xen_needs_update patches.xen/xen3-patch-2.6.29 ++xen_needs_update patches.xen/xen3-patch-2.6.30 ++xen_needs_update patches.xen/xen3-patch-2.6.31 ++xen_needs_update patches.xen/xen3-patch-2.6.32 ++xen_needs_update patches.xen/xen3-patch-2.6.32.1-2 ++xen_needs_update patches.xen/xen3-patch-2.6.32.2-3 ++xen_needs_update patches.xen/xen3-patch-2.6.32.3-4 ++xen_needs_update patches.xen/xen3-seccomp-disable-tsc-option ++xen_needs_update patches.xen/xen3-x86-mcp51-no-dac ++xen_needs_update patches.xen/xen3-x86-64-preserve-large-page-mapping-for-1st-2mb-kernel-txt-with-config_debug_rodata ++xen_needs_update patches.xen/xen3-x86-64-align-rodata-kernel-section-to-2mb-with-config_debug_rodata ++xen_needs_update patches.xen/xen3-x86-mark_rodata_rw.patch ++xen_needs_update patches.xen/xen3-x86-Remove-CPU-cache-size-output-for-non-Intel-too.patch ++xen_needs_update patches.xen/xen3-x86-cpu-mv-display_cacheinfo-cpu_detect_cache_sizes.patch ++xen_needs_update patches.xen/xen3-x86-Limit-the-number-of-processor-bootup-messages.patch ++xen_needs_update patches.xen/xen3-vmw_pvscsi-scsi-driver-for-vmware-s-virtual-hba.patch ++xen_needs_update patches.xen/xen3-kdb-x86 ++xen_needs_update patches.xen/xen3-stack-unwind ++xen_needs_update patches.xen/xen3-x86_64-unwind-annotations # bugfixes and enhancements - patches.xen/xen-balloon-max-target - patches.xen/xen-modular-blktap - patches.xen/xen-blkback-bimodal-suse - patches.xen/xen-blkif-protocol-fallback-hack - patches.xen/xen-blkback-cdrom - patches.xen/xen-blktap-write-barriers - patches.xen/xen-scsifront-block-timeout-update - patches.xen/xen-op-packet - patches.xen/xen-blkfront-cdrom - patches.xen/xen-sections - patches.xen/xen-swiotlb-heuristics - patches.xen/xen-kconfig-compat - patches.xen/xen-cpufreq-report - patches.xen/xen-staging-build - patches.xen/xen-sysdev-suspend - patches.xen/xen-ipi-per-cpu-irq - patches.xen/xen-virq-per-cpu-irq - patches.xen/xen-configurable-guest-devices - patches.xen/xen-netback-nr-irqs - patches.xen/xen-netback-notify-multi - patches.xen/xen-unpriv-build - patches.xen/xen-x86-panic-no-reboot - patches.xen/xen-x86-dcr-fallback - patches.xen/xen-x86-consistent-nmi - patches.xen/xen-x86-no-lapic - patches.xen/xen-x86-pmd-handling - patches.xen/xen-x86-bigmem - patches.xen/xen-x86-machphys-prediction - patches.xen/xen-x86-exit-mmap - patches.xen/xen-x86-per-cpu-vcpu-info - patches.xen/xen-x86_64-pgd-pin - patches.xen/xen-x86_64-pgd-alloc-order - patches.xen/xen-x86_64-dump-user-pgt - patches.xen/xen-x86_64-note-init-p2m ++xen_needs_update patches.xen/xen-balloon-max-target ++xen_needs_update patches.xen/xen-modular-blktap ++xen_needs_update patches.xen/xen-blkback-bimodal-suse ++xen_needs_update patches.xen/xen-blkif-protocol-fallback-hack ++xen_needs_update patches.xen/xen-blkback-cdrom ++xen_needs_update patches.xen/xen-blktap-write-barriers ++xen_needs_update patches.xen/xen-op-packet ++xen_needs_update patches.xen/xen-blkfront-cdrom ++xen_needs_update patches.xen/xen-sections ++xen_needs_update patches.xen/xen-swiotlb-heuristics ++xen_needs_update patches.xen/xen-kconfig-compat ++xen_needs_update patches.xen/xen-cpufreq-report ++xen_needs_update patches.xen/xen-staging-build ++xen_needs_update patches.xen/xen-sysdev-suspend ++xen_needs_update patches.xen/xen-ipi-per-cpu-irq ++xen_needs_update patches.xen/xen-virq-per-cpu-irq ++xen_needs_update patches.xen/xen-spinlock-poll-early ++xen_needs_update patches.xen/xen-configurable-guest-devices ++xen_needs_update patches.xen/xen-netback-nr-irqs ++xen_needs_update patches.xen/xen-netback-notify-multi ++xen_needs_update patches.xen/xen-pciback-sriov ++xen_needs_update patches.xen/xen-unpriv-build ++xen_needs_update patches.xen/xen-vmalloc_32 ++xen_needs_update patches.xen/xen-dcdbas ++xen_needs_update patches.xen/xen-privcmd-mmap-batch-clear ++xen_needs_update patches.xen/xen-x86-panic-no-reboot ++xen_needs_update patches.xen/xen-x86-dcr-fallback ++xen_needs_update patches.xen/xen-x86-consistent-nmi ++xen_needs_update patches.xen/xen-x86-no-lapic ++xen_needs_update patches.xen/xen-x86-pmd-handling ++xen_needs_update patches.xen/xen-x86-bigmem ++xen_needs_update patches.xen/xen-x86-machphys-prediction ++xen_needs_update patches.xen/xen-x86-exit-mmap ++xen_needs_update patches.xen/xen-x86-per-cpu-vcpu-info ++xen_needs_update patches.xen/xen-x86_64-pgd-pin ++xen_needs_update patches.xen/xen-x86_64-pgd-alloc-order ++xen_needs_update patches.xen/xen-x86_64-dump-user-pgt ++xen_needs_update patches.xen/xen-x86_64-note-init-p2m diff --git a/source-timestamp b/source-timestamp index ffb2fce..21de784 100644 --- a/source-timestamp +++ b/source-timestamp @@ -1,3 +1,3 @@ -2009-12-04 00:41:46 +0100 -GIT Revision: 4070eecb55553914dd7cf49aeb8a589df281e7d9 +2010-01-27 14:55:38 +0100 +GIT Revision: 2b3dccc0787e3003e55784678dcf8aa5c6503f95 GIT Branch: master diff --git a/supported.conf b/supported.conf index 99cc45d..85ab5a1 100644 --- a/supported.conf +++ b/supported.conf @@ -43,6 +43,8 @@ kernel/arch/s390/kvm/kvm kernel/arch/x86/crypto/aes-i586 # Rijndael (AES) Cipher Algorithm (optimized for i586) kernel/arch/x86/crypto/aes-x86_64 + kernel/arch/x86/crypto/aesni-intel + kernel/arch/x86/crypto/ghash-clmulni-intel external # fate #306883 kernel/arch/x86/crypto/salsa20-i586 kernel/arch/x86/crypto/salsa20-x86_64 kernel/arch/x86/crypto/twofish-i586 @@ -58,6 +60,7 @@ - kernel/arch/x86/kernel/cpu/cpufreq/powernow-k6 - kernel/arch/x86/kernel/cpu/cpufreq/powernow-k7 kernel/arch/x86/kernel/cpu/cpufreq/powernow-k8 # AMD Athlon 64 and Opteron processor frequency driver. + kernel/arch/x86/kernel/cpu/cpufreq/pcc-cpufreq # HP's PCC cpufreq driver -> fate#306746 kernel/arch/x86/kernel/cpu/cpufreq/speedstep-centrino - kernel/arch/x86/kernel/cpu/cpufreq/speedstep-ich kernel/arch/x86/kernel/cpu/cpufreq/speedstep-lib @@ -69,8 +72,9 @@ kernel/arch/x86/kvm/kvm kernel/arch/x86/kvm/kvm-amd kernel/arch/x86/kvm/kvm-intel - kernel/arch/x86/oprofile/oprofile kernel/arch/x86/oprofile/oprofile # OProfile system profiler + kernel/arch/x86/kernel/cpu/mcheck/mce-inject # Needed for Intel MCE/RAS testing + mm/hwpoison-inject # Needed for Intel MCE/RAS testing kernel/crypto/aead kernel/crypto/aes_generic kernel/crypto/anubis @@ -143,6 +147,7 @@ +base kernel/drivers/acpi/dock # Be careful: libata depends on it kernel/drivers/acpi/fan # ACPI Fan Driver kernel/drivers/acpi/pci_slot + kernel/drivers/acpi/power_meter # ACPI Power Meter Driver kernel/drivers/acpi/processor # ACPI Processor Driver kernel/drivers/acpi/sbs kernel/drivers/acpi/sbshc @@ -688,6 +693,7 @@ kernel/drivers/input/keyboard/sunkbd # Sun keyboard driver kernel/drivers/input/keyboard/twl4030_keypad kernel/drivers/input/keyboard/xtkbd # XT keyboard driver + kernel/drivers/input/sparse-keymap kernel/drivers/input/misc/apanel kernel/drivers/input/misc/ati_remote kernel/drivers/input/misc/ati_remote2 @@ -811,6 +817,7 @@ - kernel/drivers/macintosh/mol/sheep kernel/drivers/md/dm-crypt # device-mapper target for transparent encryption / decryption kernel/drivers/md/dm-delay + kernel/drivers/md/dm-log-userspace kernel/drivers/md/dm-log kernel/drivers/md/dm-memcache kernel/drivers/md/dm-message @@ -819,7 +826,7 @@ kernel/drivers/md/dm-multipath # device-mapper multipath target kernel/drivers/md/dm-raid45 kernel/drivers/md/dm-regions - kernel/drivers/md/dm-region_hash + kernel/drivers/md/dm-region-hash kernel/drivers/md/dm-round-robin # Round-robin path selector kernel/drivers/md/dm-least-pending kernel/drivers/md/dm-queue-length # Queue-lenght oriented dynamic load balancer @@ -943,6 +950,7 @@ - kernel/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget # TTUSB DVB Driver - kernel/drivers/media/dvb/ttusb-dec/ttusbdecfe - kernel/drivers/media/dvb/ttusb-dec/ttusb_dec # TechnoTrend/Hauppauge DEC USB + kernel/drivers/media/IR/ir-core kernel/drivers/media/radio/dsbr100 +isa kernel/drivers/media/radio/radio-aimslab +isa kernel/drivers/media/radio/radio-aztech @@ -1022,6 +1030,7 @@ kernel/drivers/media/video/m52790 kernel/drivers/media/video/meye kernel/drivers/media/video/msp3400 # device driver for msp34xx TV sound processor + kernel/drivers/media/video/soc_mediabus kernel/drivers/media/video/mt9m001 kernel/drivers/media/video/mt9v022 kernel/drivers/media/video/mxb # video4linux-2 driver for the Siemens-Nixdorf 'Multimedia eXtension board' @@ -1343,6 +1352,7 @@ kernel/drivers/net/macvlan kernel/drivers/net/mii # MII hardware support library kernel/drivers/net/mlx4/mlx4_core + kernel/drivers/net/mlx4/mlx4_en kernel/drivers/net/mv643xx_eth # gigabit Pegasos2, all chips share the same MAC kernel/drivers/net/myri10ge/myri10ge kernel/drivers/net/natsemi # National Semiconductor DP8381x series PCI Ethernet driver @@ -1458,6 +1468,7 @@ kernel/drivers/net/via-velocity # VIA Networking Velocity Family Gigabit Ethernet Adapter Driver kernel/drivers/net/virtio_net +isa kernel/drivers/net/wan/c101 +- kernel/drivers/net/wan/cosa - kernel/drivers/net/wan/dlci - kernel/drivers/net/wan/dscc4 - kernel/drivers/net/wan/farsync @@ -1483,25 +1494,16 @@ +isa kernel/drivers/net/wan/z85230 +isa kernel/drivers/net/wd kernel/drivers/net/wireless/adm8211 -- kernel/drivers/net/wireless/airo_cs # Support for Cisco/Aironet 802.11 wireless ethernet cards. This is the module that links the PCMCIA card with the airo module. -- kernel/drivers/net/wireless/airo # Support for Cisco/Aironet 802.11 wireless ethernet cards. Direct support for ISA/PCI/MPI cards and support for PCMCIA when used with airo_cs. kernel/drivers/net/wireless/airport kernel/drivers/net/wireless/ath/ath kernel/drivers/net/wireless/ath5k/ath5k kernel/drivers/net/wireless/ath9k/ath9k + kernel/drivers/net/wireless/ath9k/ath9k_hw + kernel/drivers/net/wireless/ath9k/ath9k_common + kernel/drivers/net/wireless/atmel # Support for Atmel at76c50x 802.11 wireless ethernet cards. kernel/drivers/net/wireless/atmel_cs # Support for Atmel at76c50x 802.11 wireless ethernet cards. kernel/drivers/net/wireless/atmel_pci # Support for Atmel at76c50x 802.11 wireless ethernet cards. - kernel/drivers/net/wireless/atmel # Support for Atmel at76c50x 802.11 wireless ethernet cards. -- kernel/drivers/net/wireless/b43/b43 -- kernel/drivers/net/wireless/b43legacy/b43legacy kernel/drivers/net/wireless/hermes # Low-level driver helper for Lucent Hermes chipset and Prism II HFA384x wireless MAC controller -- kernel/drivers/net/wireless/hostap/hostap_cs -- kernel/drivers/net/wireless/hostap/hostap # Host AP common routines -- kernel/drivers/net/wireless/hostap/hostap_pci # Support for Intersil Prism2.5-based 802.11 wireless LAN PCI cards. -- kernel/drivers/net/wireless/hostap/hostap_plx # Support for Intersil Prism2-based 802.11 wireless LAN cards (PLX). -+external kernel/drivers/net/wireless/ipw2x00/ipw2100 -+external kernel/drivers/net/wireless/ipw2x00/ipw2200 -+external kernel/drivers/net/wireless/ipw2x00/libipw kernel/drivers/net/wireless/iwlwifi/iwl3945 kernel/drivers/net/wireless/iwlwifi/iwlagn kernel/drivers/net/wireless/iwlwifi/iwlcore @@ -1511,8 +1513,8 @@ kernel/drivers/net/wireless/libertas/usb8xxx kernel/drivers/net/wireless/mac80211_hwsim kernel/drivers/net/wireless/netwave_cs - kernel/drivers/net/wireless/orinoco_cs # Driver for PCMCIA Lucent Orinoco, Prism II based and similar wireless cards kernel/drivers/net/wireless/orinoco # Driver for Lucent Orinoco, Prism II based and similar wireless cards + kernel/drivers/net/wireless/orinoco_cs # Driver for PCMCIA Lucent Orinoco, Prism II based and similar wireless cards kernel/drivers/net/wireless/orinoco_nortel # Nortel specific Orinoco driver kernel/drivers/net/wireless/orinoco_pci # Driver for wireless LAN cards using direct PCI interface kernel/drivers/net/wireless/orinoco_plx # Driver for wireless LAN cards using the PLX9052 PCI bridge @@ -1521,25 +1523,49 @@ kernel/drivers/net/wireless/p54/p54pci kernel/drivers/net/wireless/p54/p54usb kernel/drivers/net/wireless/prism54/prism54 # The Prism54 802.11 Wireless LAN adapter -- kernel/drivers/net/wireless/ray_cs # Raylink/WebGear wireless LAN driver kernel/drivers/net/wireless/rndis_wlan + kernel/drivers/net/wireless/rtl8180 + kernel/drivers/net/wireless/rtl8187 + kernel/drivers/net/wireless/strip # Starmode Radio IP (STRIP) Device Driver + kernel/drivers/net/wireless/zd1201 + kernel/drivers/net/wireless/zd1211rw/zd1211rw ++external kernel/drivers/net/wireless/ipw2x00/ipw2100 ++external kernel/drivers/net/wireless/ipw2x00/ipw2200 ++external kernel/drivers/net/wireless/ipw2x00/libipw ++isa kernel/drivers/net/wireless/wavelan ++review kernel/drivers/net/wireless/spectrum_cs # Driver for 802.11b cards using RAM-loadable Symbol firmwar +- kernel/drivers/net/wireless/airo # Support for Cisco/Aironet 802.11 wireless ethernet cards. Direct support for ISA/PCI/MPI cards and support for PCMCIA when used with airo_cs. +- kernel/drivers/net/wireless/airo_cs # Support for Cisco/Aironet 802.11 wireless ethernet cards. This is the module that links the PCMCIA card with the airo module. +- kernel/drivers/net/wireless/arlan +- kernel/drivers/net/wireless/at76c50x-usb +- kernel/drivers/net/wireless/b43/b43 +- kernel/drivers/net/wireless/b43legacy/b43legacy +- kernel/drivers/net/wireless/hostap/hostap # Host AP common routines +- kernel/drivers/net/wireless/hostap/hostap_cs +- kernel/drivers/net/wireless/hostap/hostap_pci # Support for Intersil Prism2.5-based 802.11 wireless LAN PCI cards. +- kernel/drivers/net/wireless/hostap/hostap_plx # Support for Intersil Prism2-based 802.11 wireless LAN cards (PLX). +- kernel/drivers/net/wireless/iwmc3200wifi/iwmc3200wifi +- kernel/drivers/net/wireless/libertas/libertas_spi +- kernel/drivers/net/wireless/libertas_tf/libertas_tf +- kernel/drivers/net/wireless/libertas_tf/libertas_tf_usb +- kernel/drivers/net/wireless/mwl8k +- kernel/drivers/net/wireless/p54/p54spi +- kernel/drivers/net/wireless/ray_cs # Raylink/WebGear wireless LAN driver - kernel/drivers/net/wireless/rt2x00/rt2400pci - kernel/drivers/net/wireless/rt2x00/rt2500pci - kernel/drivers/net/wireless/rt2x00/rt2500usb +- kernel/drivers/net/wireless/rt2x00/rt2800usb - kernel/drivers/net/wireless/rt2x00/rt2x00lib - kernel/drivers/net/wireless/rt2x00/rt2x00pci - kernel/drivers/net/wireless/rt2x00/rt2x00usb - kernel/drivers/net/wireless/rt2x00/rt61pci - kernel/drivers/net/wireless/rt2x00/rt73usb - kernel/drivers/net/wireless/rtl8180 - kernel/drivers/net/wireless/rtl8187 -+review kernel/drivers/net/wireless/spectrum_cs # Driver for 802.11b cards using RAM-loadable Symbol firmwar - kernel/drivers/net/wireless/strip # Starmode Radio IP (STRIP) Device Driver -+isa kernel/drivers/net/wireless/wavelan - kernel/drivers/net/wireless/wavelan_cs +- kernel/drivers/net/wireless/wl12xx/wl1251 +- kernel/drivers/net/wireless/wl12xx/wl1251_sdio +- kernel/drivers/net/wireless/wl12xx/wl1251_spi +- kernel/drivers/net/wireless/wl12xx/wl1271 - kernel/drivers/net/wireless/wl3501_cs # Planet wl3501 wireless driver - kernel/drivers/net/wireless/zd1201 - kernel/drivers/net/wireless/zd1211rw/zd1211rw kernel/drivers/net/yellowfin # Packet Engines Yellowfin G-NIC Gigabit Ethernet driver +isa kernel/drivers/net/znet kernel/drivers/parport/parport @@ -1558,6 +1584,7 @@ kernel/drivers/pci/hotplug/pci_hotplug # PCI Hot Plug PCI Core kernel/drivers/pci/hotplug/sgi_hotplug # SGI's PCI Hotplug controller Driver kernel/drivers/pci/hotplug/shpchp # Standard Hot Plug PCI Controller Driver + kernel/drivers/pci/pcie/aer/aer_inject # fate #306815 kernel/drivers/pcmcia/i82092 +isa kernel/drivers/pcmcia/i82365 kernel/drivers/pcmcia/pcmcia @@ -2462,8 +2489,12 @@ kernel/net/sunrpc/xprtrdma/svcrdma kernel/net/sunrpc/xprtrdma/xprtrdma - kernel/net/wanrouter/wanrouter +- kernel/net/wimax/wimax kernel/net/wireless/cfg80211 kernel/net/wireless/lib80211 + kernel/net/wireless/lib80211_crypt_ccmp + kernel/net/wireless/lib80211_crypt_tkip + kernel/net/wireless/lib80211_crypt_wep - kernel/net/x25/x25 # The X.25 Packet Layer network layer protocol kernel/net/xfrm/xfrm_ipcomp kernel/net/xfrm/xfrm_user @@ -2505,6 +2536,7 @@ kernel/sound/drivers/snd-serial-u16550 # MIDI serial u16550 kernel/sound/drivers/snd-virmidi # Dummy soundcard for virtual rawmidi devices kernel/sound/drivers/vx/snd-vx-lib # Common routines for Digigram VX drivers + kernel/sound/i2c/other/snd-ak4113 kernel/sound/i2c/other/snd-ak4114 +isa kernel/sound/i2c/other/snd-ak4117 kernel/sound/i2c/other/snd-ak4xxx-adda # Routines for control of AK452x / AK43xx AD/DA converters